Skip to content

Commit

Permalink
Update usage of go -C flag
Browse files Browse the repository at this point in the history
`-C flag must be first flag on command line`
  • Loading branch information
kachick committed Aug 25, 2023
1 parent 6f8eae5 commit 14da55b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
go-version-file: 'tool/go.mod'
cache-dependency-path: 'tool/go.sum'
- name: Build
run: go build -v -C ./tool/articlegen
run: go build -C ./tool/articlegen -v
ci-makepr:
runs-on: ubuntu-latest
steps:
Expand All @@ -32,7 +32,7 @@ jobs:
go-version-file: 'tool/go.mod'
cache-dependency-path: 'tool/go.sum'
- name: Build
run: go build -v -C ./tool/makepr
run: go build -C ./tool/makepr -v
ci-sincelastcommit:
runs-on: ubuntu-latest
steps:
Expand All @@ -43,5 +43,5 @@ jobs:
go-version-file: 'tool/go.mod'
cache-dependency-path: 'tool/go.sum'
- name: Build
run: go build -v -C ./tool/makepr
run: go build -C ./tool/makepr -v

0 comments on commit 14da55b

Please sign in to comment.