Skip to content

Commit

Permalink
exchange of cp to mv in make file
Browse files Browse the repository at this point in the history
  • Loading branch information
r4f4ss authored and GrapeBaBa committed Sep 25, 2024
1 parent 35cfb71 commit 9e0d0b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ GORUN = go run
shisui:
go build ./cmd/shisui/main.go
mkdir -p $(GOBIN)
cp main $(GOBIN)/shisui
mv main $(GOBIN)/shisui
@echo "Done building."
@echo "Run \"$(GOBIN)/shisui\" to launch shisui."

Expand Down

0 comments on commit 9e0d0b5

Please sign in to comment.