Skip to content

Commit

Permalink
Fix minor lint errors (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
imjasonh committed Aug 8, 2018
1 parent a929e35 commit 4478886
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion dotnet/configs/config-2.1.302/global.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
"sdk": {
"version": "2.1.302"
}
}
}

8 changes: 4 additions & 4 deletions go/prepare_workspace.inc
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ prepare_workspace() {

# If $GOPATH is set, do nothing. The user has already set up the workspace.
if [[ "$GOPATH" ]]; then
# We allow relative paths here because of how the Cloud Build service
# works. But, the Go tool does not allow relative paths. To accomodate
# the Go tool, we prepend the CWD to $GOPATH if $GOPATH is not
# absolute.
# We allow relative paths here because of how the Cloud Build service
# works. But, the Go tool does not allow relative paths. To accomodate
# the Go tool, we prepend the CWD to $GOPATH if $GOPATH is not
# absolute.
if [[ "${GOPATH:0:1}" != '/' ]]; then
export GOPATH="$PWD/$GOPATH"
fi
Expand Down

0 comments on commit 4478886

Please sign in to comment.