From b8406371a2905362699511b0bbb04df5712c775f Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 10 Jun 2019 23:39:34 -0700 Subject: [PATCH] must use build/build instead of go build Signed-off-by: Jeff Carr --- Makefile | 4 ++-- resources/cloud-control-panel.json | 2 +- upgrade.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e50489f..d651230 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,11 @@ GO111MODULE=on run: @echo your version of go must be greater than 2.10. Your version is ${GOVERSION} - packr build + ./build/build ./cloud-control-panel build: - go build + ./build/build default-config: config-delete echo loading the test config diff --git a/resources/cloud-control-panel.json b/resources/cloud-control-panel.json index e3291ff..1af1bad 100644 --- a/resources/cloud-control-panel.json +++ b/resources/cloud-control-panel.json @@ -1,6 +1,6 @@ { "width": 700, - "height": 500, + "height": 600, "accounts": [ { "id": 42, diff --git a/upgrade.go b/upgrade.go index 483a763..d923518 100644 --- a/upgrade.go +++ b/upgrade.go @@ -83,5 +83,5 @@ func upgrade() { } time.Sleep(time.Second) - for {} + // for {} }