mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-16 08:53:46 +00:00
Make sure that the build/bin directory exists to copy the executable.
Fixes #159
This commit is contained in:
parent
4a933628a8
commit
54f67dca1a
1 changed files with 1 additions and 0 deletions
1
Makefile
1
Makefile
|
|
@ -11,6 +11,7 @@ GORUN = go run
|
||||||
#? shisui: Build shisui
|
#? shisui: Build shisui
|
||||||
shisui:
|
shisui:
|
||||||
go build ./cmd/shisui/main.go
|
go build ./cmd/shisui/main.go
|
||||||
|
mkdir -p $(GOBIN)
|
||||||
cp main $(GOBIN)/shisui
|
cp main $(GOBIN)/shisui
|
||||||
@echo "Done building."
|
@echo "Done building."
|
||||||
@echo "Run \"$(GOBIN)/shisui\" to launch shisui."
|
@echo "Run \"$(GOBIN)/shisui\" to launch shisui."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue