You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2022/05/03 12:51:45 UTC

[camel-k] branch main updated: package_maven_artifacts: run unzip in silent mode

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new 7b49bbe74 package_maven_artifacts: run unzip in silent mode
7b49bbe74 is described below

commit 7b49bbe74ccb677aa7c343bff8c4ab986689fcf4
Author: Claudio Miranda <cl...@claudius.com.br>
AuthorDate: Mon May 2 20:39:12 2022 -0300

    package_maven_artifacts: run unzip in silent mode
---
 script/package_maven_artifacts.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/script/package_maven_artifacts.sh b/script/package_maven_artifacts.sh
index 5215b19c9..43ba65e73 100755
--- a/script/package_maven_artifacts.sh
+++ b/script/package_maven_artifacts.sh
@@ -35,7 +35,7 @@ if [ -z "$2" ]; then
 
     # Take the dependencies officially released
     wget https://repo1.maven.org/maven2/org/apache/camel/k/apache-camel-k-runtime/$1/apache-camel-k-runtime-$1-source-release.zip -O $PWD/build/apache-camel-k-runtime-$1-source-release.zip
-    unzip -o $PWD/build/apache-camel-k-runtime-$1-source-release.zip -d $PWD/build
+    unzip -q -o $PWD/build/apache-camel-k-runtime-$1-source-release.zip -d $PWD/build
     mvn -q -f $PWD/build/apache-camel-k-runtime-$1/pom.xml \
         dependency:copy-dependencies \
         -DincludeScope=runtime \