Reduce verbosity while installing dependencies

This commit is contained in:
Felipe Reyes
2015-03-09 10:28:51 -03:00
parent 0f9c7a5d06
commit a3c76f5acb

View File

@@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/bin/bash -x
# The script installs amulet and other tools needed for the amulet tests.
# Get the status of the amulet package, this returns 0 of package is installed.
@@ -7,7 +7,7 @@ if [ $? -ne 0 ]; then
# Install the Amulet testing harness.
sudo add-apt-repository -y ppa:juju/stable
sudo apt-get update
sudo apt-get install -y amulet juju-core charm-tools
sudo apt-get install -y -q amulet juju-core charm-tools
fi