Skip to content

Commit dc1a36e

Browse files
authored
Merge pull request #126 from rossabaker/batch
Run SBT in batch mode
2 parents a8157ff + 788da0c commit dc1a36e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async function run(): Promise<void> {
4949
const input = { ignoredModules, ignoredConfigs, onResolveFailure }
5050

5151
process.env['GITHUB_TOKEN'] = token
52-
await cli.exec('sbt', [`githubSubmitDependencyGraph ${JSON.stringify(input)}`], {
52+
await cli.exec('sbt', ['--batch', `githubSubmitDependencyGraph ${JSON.stringify(input)}`], {
5353
cwd: workingDir,
5454
})
5555
} catch (error) {

0 commit comments

Comments
 (0)