must use build/build instead of go build
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
fb4a2523b4
commit
b8406371a2
4
Makefile
4
Makefile
|
@ -10,11 +10,11 @@ GO111MODULE=on
|
||||||
|
|
||||||
run:
|
run:
|
||||||
@echo your version of go must be greater than 2.10. Your version is ${GOVERSION}
|
@echo your version of go must be greater than 2.10. Your version is ${GOVERSION}
|
||||||
packr build
|
./build/build
|
||||||
./cloud-control-panel
|
./cloud-control-panel
|
||||||
|
|
||||||
build:
|
build:
|
||||||
go build
|
./build/build
|
||||||
|
|
||||||
default-config: config-delete
|
default-config: config-delete
|
||||||
echo loading the test config
|
echo loading the test config
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"width": 700,
|
"width": 700,
|
||||||
"height": 500,
|
"height": 600,
|
||||||
"accounts": [
|
"accounts": [
|
||||||
{
|
{
|
||||||
"id": 42,
|
"id": 42,
|
||||||
|
|
|
@ -83,5 +83,5 @@ func upgrade() {
|
||||||
}
|
}
|
||||||
time.Sleep(time.Second)
|
time.Sleep(time.Second)
|
||||||
|
|
||||||
for {}
|
// for {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue