use install instead of cp

This commit is contained in:
Benjamin Elder
2019-05-09 00:07:52 -07:00
parent 466b9d64c7
commit e9e0f0362d

View File

@@ -77,7 +77,7 @@ build: kind
# use: make install INSTALL_DIR=/usr/local/bin
install: build
cp $(OUT_DIR)/kind $(INSTALL_DIR)/kind
install $(OUT_DIR)/kind $(INSTALL_DIR)/kind
# standard cleanup target
clean: clean-cache clean-output