Skip to content

Commit

Permalink
fix: spell out option
Browse files Browse the repository at this point in the history
Co-authored-by: Lukas Lohoff <[email protected]>
  • Loading branch information
simonseyock and LukasLohoff authored Sep 6, 2023
1 parent 0ec4d80 commit ab64d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/maven.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function deploy(logger, nextVersion, mavenTarget, settingsPath, clean) {
try {
await exec(
'mvn',
[...cleanTarget, ...mavenTarget.split(' '), '--batch-mode', '-ntp', '-DskipTests', '--settings', settingsPath]
[...cleanTarget, ...mavenTarget.split(' '), '--batch-mode', '--no-transfer-progress', '-DskipTests', '--settings', settingsPath]
);
} catch (e) {
logger.error('failed to deploy to maven');
Expand Down

0 comments on commit ab64d7f

Please sign in to comment.