Fix IP address print

Fix docker repo
Fix local build tasks
This commit is contained in:
2018-08-01 22:34:29 -06:00
parent 51a36bd5b4
commit 3cf557ebe7
3 changed files with 4 additions and 9 deletions

9
.vscode/tasks.json vendored
View File

@@ -6,7 +6,7 @@
{
"label": "Local Build",
"type": "shell",
"command": "cd mandelmapper ; go build",
"command": "go build ; ./mandelmapper",
"group": {
"kind": "build",
"isDefault": true
@@ -15,12 +15,7 @@
{
"label": "Raspberry Pi 3 Build",
"type": "shell",
"command": "cd mandelmapper ; export GOOS=linux ; export GOARCH=arm ; export GOARM=7 ; go build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
"command": "export GOOS=linux ; export GOARCH=arm ; export GOARM=7 ; go build"
}
]
}