Browse Source

Unzip quietly while provisioning virtual machines

When provisioning the virtual machines used for packaging, we download
the Gradle zip archive and unzip. This unzip is noisy produing a lot of
unnecessary output. This commit silences this output.

Relates #25803
Jason Tedor 8 years ago
parent
commit
9aa42a438b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Vagrantfile

+ 1 - 1
Vagrantfile

@@ -272,7 +272,7 @@ def provision(config,
     installed gradle || {
       echo "==> Installing Gradle"
       curl -sS -o /tmp/gradle.zip -L https://services.gradle.org/distributions/gradle-3.3-bin.zip
-      unzip /tmp/gradle.zip -d /opt
+      unzip -q /tmp/gradle.zip -d /opt
       rm -rf /tmp/gradle.zip
       ln -s /opt/gradle-3.3/bin/gradle /usr/bin/gradle
       # make nfs mounted gradle home dir writeable