Skip to content

Commit a4b56c0

Browse files
authored
Merge pull request #164 from devlights/fix-gitpod-config-file
Fix shell script
2 parents 91cf503 + f0cb50c commit a4b56c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.gitpod.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
tasks:
22
- init: go env -w GO111MODULE=off &&
3-
go get -v github.com/cheekybits/genny &&
4-
go get -v github.com/devlights/mkghurl &&
3+
go get github.com/cheekybits/genny &&
4+
go get github.com/devlights/mkghurl &&
55
go env -u GO111MODULE &&
66
make build &&
77
make clean &&
8-
if [ "$GITHUB_TOKEN" != "" ]; then git remote set-url origin $(mkghurl try-c); fi
8+
if [ -n "$GITHUB_TOKEN" ]; then git remote set-url origin $(mkghurl try-golang); fi
99
command: go version
1010
image:
1111
file: .gitpod.Dockerfile

0 commit comments

Comments
 (0)