Makefile: Create bin directory if it doesn't exist (#6050)

This commit is contained in:
kannappanr 2018-06-18 11:45:28 -07:00 committed by GitHub
parent 001d9a4ae7
commit d94500ae26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ pkg-list:
# Builds minio and installs it to $GOPATH/bin. # Builds minio and installs it to $GOPATH/bin.
install: build install: build
@echo "Installing minio binary to '$(GOPATH)/bin/minio'" @echo "Installing minio binary to '$(GOPATH)/bin/minio'"
@cp $(PWD)/minio $(GOPATH)/bin/minio @mkdir -p $(GOPATH)/bin && cp $(PWD)/minio $(GOPATH)/bin/minio
@echo "Installation successful. To learn more, try \"minio --help\"." @echo "Installation successful. To learn more, try \"minio --help\"."
clean: clean: