Skip to content

Commit

Permalink
fix(gomod): add ./... to go get command (#4483)
Browse files Browse the repository at this point in the history
  • Loading branch information
moorara authored and rarkins committed Sep 12, 2019
1 parent 4932514 commit 26234f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/manager/gomod/artifacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export async function updateArtifacts(
logger.info('Running go via global command');
cmd = 'go';
}
let args = 'get';
let args = 'get ./...';
if (cmd.includes('.insteadOf')) {
args += '"';
}
Expand Down

0 comments on commit 26234f7

Please sign in to comment.