Skip to content

Commit 788da0c

Browse files
committed
Run SBT in batch mode
1 parent a8157ff commit 788da0c

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)