diff --git a/cli/main/main.go b/main.go similarity index 100% rename from cli/main/main.go rename to main.go diff --git a/script/binary b/script/binary index ee1c21a3..713caee2 100755 --- a/script/binary +++ b/script/binary @@ -12,7 +12,7 @@ rm -f $OUT_FILE go build \ "${BUILD_FLAGS[@]}" \ -o $OUT_FILE \ - ./cli/main + main.go if [ $? -eq 0 ]; then echo "Build successful. Program saved as ${OUT_FILE}" diff --git a/script/binary-cross b/script/binary-cross index ee3d11ae..4c2fbfda 100644 --- a/script/binary-cross +++ b/script/binary-cross @@ -24,4 +24,4 @@ rm -f kompose* gox "${OS_PLATFORM_ARG[@]}" "${OS_ARCH_ARG[@]}" \ -output="bundles/kompose_{{.OS}}-{{.Arch}}/kompose" \ "${BUILD_FLAGS[@]}" \ - ./cli/main + main.go