From 54f67dca1adf09662c8706379bf61f5788c880ea Mon Sep 17 00:00:00 2001 From: Leonardo Arias Fonseca Date: Thu, 19 Sep 2024 17:19:59 +0000 Subject: [PATCH] Make sure that the build/bin directory exists to copy the executable. Fixes #159 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 545c7cd7b4..c206c9818c 100644 --- a/Makefile +++ b/Makefile @@ -11,6 +11,7 @@ GORUN = go run #? shisui: Build shisui shisui: go build ./cmd/shisui/main.go + mkdir -p $(GOBIN) cp main $(GOBIN)/shisui @echo "Done building." @echo "Run \"$(GOBIN)/shisui\" to launch shisui."