exchange of cp to mv in make file

This commit is contained in:
Rafael Sampaio 2024-09-24 01:23:37 -03:00 committed by Chen Kai
parent 35cfb71bc0
commit 9e0d0b50e4

View file

@ -12,7 +12,7 @@ GORUN = go run
shisui: shisui:
go build ./cmd/shisui/main.go go build ./cmd/shisui/main.go
mkdir -p $(GOBIN) mkdir -p $(GOBIN)
cp main $(GOBIN)/shisui mv main $(GOBIN)/shisui
@echo "Done building." @echo "Done building."
@echo "Run \"$(GOBIN)/shisui\" to launch shisui." @echo "Run \"$(GOBIN)/shisui\" to launch shisui."