Skip to content

Commit

Permalink
Unzip quietly while provisioning virtual machines
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jasontedor authored Jul 20, 2017
1 parent 9989ac6 commit 9aa42a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9aa42a4

Please sign in to comment.