Fix Makefile. Print info when building binary.

This commit is contained in:
Tomas Kral
2016-08-11 11:00:46 +02:00
parent 575d7e4162
commit a15a8f36ca
+6
View File
@@ -10,3 +10,9 @@ go build \
-o kompose \
-ldflags="-w -X github.com/skippbox/kompose/version.GITCOMMIT=${GITCOMMIT}" \
./cli/main
if [ $? -eq 0 ]; then
echo "Build successful. Program saved as ${OUT_FILE}"
else
echo "Build failed."
fi