Skip to content

Commit d68b032

Browse files
committed
Remove quiet flag from Maven compile for verbose output in CI
1 parent 5d8a9ab commit d68b032

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
echo "Building Section 02: Playwright Overview"
2626
find section-02-playwright-overview -name pom.xml -not -path "*/target/*" | sort | while read pom; do
2727
echo "Building $(dirname $pom)"
28-
mvn clean compile -B -q -f "$pom" || {
28+
mvn clean compile -B -f "$pom" || {
2929
echo "Failed to compile $pom"
3030
exit 1
3131
}
@@ -52,7 +52,7 @@ jobs:
5252
echo "Building Section 03: Playwright Quickstart"
5353
find section-03-playwright-quickstart -name pom.xml -not -path "*/target/*" | sort | while read pom; do
5454
echo "Building $(dirname $pom)"
55-
mvn clean compile -B -q -f "$pom" || {
55+
mvn clean compile -B -f "$pom" || {
5656
echo "Failed to compile $pom"
5757
exit 1
5858
}

0 commit comments

Comments
 (0)