Skip to content

Commit 338ff8d

Browse files
committed
Hide dependency download progress in more places
Signed-off-by: Taylor Smock <smocktaylor@gmail.com>
1 parent f96e86d commit 338ff8d

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

actions/josm_build/dist/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80095,6 +80095,7 @@ async function buildJosm(josmSource, josmRevision) {
8009580095
await (0,exec.exec)("mvn", [
8009680096
"--file",
8009780097
josmSource + "/pom.xml",
80098+
"--no-transfer-progress",
8009880099
"package",
8009980100
"install",
8010080101
"-DskipTests",
@@ -80121,6 +80122,7 @@ async function buildJosmTests(josmSource, josmRevision) {
8012180122
await (0,exec.exec)("mvn", [
8012280123
"--file",
8012380124
josmSource + "/pom.xml",
80125+
"--no-transfer-progress",
8012480126
"package",
8012580127
"install",
8012680128
"-DskipTests",
@@ -80133,6 +80135,7 @@ async function buildJosmTests(josmSource, josmRevision) {
8013380135
"../nodist/pom.xml",
8013480136
"--file",
8013580137
"pom.xml",
80138+
"--no-transfer-progress",
8013680139
"package",
8013780140
"install",
8013880141
"-DskipTests",

actions/josm_build/src/action.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ async function buildJosm(
8484
await exec("mvn", [
8585
"--file",
8686
josmSource + "/pom.xml",
87+
"--no-transfer-progress",
8788
"package",
8889
"install",
8990
"-DskipTests",
@@ -128,6 +129,7 @@ async function buildJosmTests(
128129
await exec("mvn", [
129130
"--file",
130131
josmSource + "/pom.xml",
132+
"--no-transfer-progress",
131133
"package",
132134
"install",
133135
"-DskipTests",
@@ -140,6 +142,7 @@ async function buildJosmTests(
140142
"../nodist/pom.xml",
141143
"--file",
142144
"pom.xml",
145+
"--no-transfer-progress",
143146
"package",
144147
"install",
145148
"-DskipTests",

0 commit comments

Comments
 (0)