Quiet the package installation in Fabric script

This commit is contained in:
Nathan Fiedler
2016-10-20 09:02:13 -07:00
parent 2eccf1e91b
commit c45a066093
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ else:
def all():
"""Install everything needed to build magick-rust."""
sudo('apt-get -q -y install git')
sudo('apt-get install pkg-config')
sudo('apt-get -q -y install pkg-config')
# the rustc and cargo packages are fairly old, so build from source
run('wget -q https://static.rust-lang.org/rustup.sh')
run('chmod +x rustup.sh')