From 9711c52e07b8908202ca3c27f01522ebe1512b54 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 545c7cd7b42c..c206c9818c7d 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."