From 9e0d0b50e491565e13a007543410deb02a62e98a Mon Sep 17 00:00:00 2001 From: Rafael Sampaio <5679073+r4f4ss@users.noreply.github.com> Date: Tue, 24 Sep 2024 01:23:37 -0300 Subject: [PATCH] exchange of cp to mv in make file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c206c9818c7d..11e53d4ca4b9 100644 --- a/Makefile +++ b/Makefile @@ -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."