From d1a6c32d800f1d5b703baad1f8aeede6cf2cdf48 Mon Sep 17 00:00:00 2001 From: Aditya Manthramurthy Date: Tue, 21 Nov 2017 16:22:01 -0800 Subject: [PATCH] Improve make and make install messages (#5207) --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 36c0fe60d..6891e7c4b 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ coverage: build # Builds minio locally. build: - @echo "Building minio to $(PWD)/minio ..." + @echo "Building minio binary: $(PWD)/minio" @CGO_ENABLED=0 go build --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio pkg-add: @@ -90,9 +90,9 @@ pkg-list: # Builds minio and installs it to $GOPATH/bin. install: build - @echo "Installing minio at $(GOPATH)/bin/minio ..." + @echo "Installing minio binary: $(GOPATH)/bin/minio" @cp $(PWD)/minio $(GOPATH)/bin/minio - @echo "Check 'minio -h' for help." + @echo "\nInstallation successful. To learn more, try \"minio --help\"." clean: @echo "Cleaning up all the generated files"