Quiet the package installation in Fabric script
This commit is contained in:
2
vagrant/freebsd10/fabfile.py
vendored
2
vagrant/freebsd10/fabfile.py
vendored
@ -40,7 +40,7 @@ def all():
|
|||||||
sudo("pkg install -q -y rust")
|
sudo("pkg install -q -y rust")
|
||||||
sudo("pkg install -q -y cargo")
|
sudo("pkg install -q -y cargo")
|
||||||
sudo("pkg install -q -y ImageMagick-nox11")
|
sudo("pkg install -q -y ImageMagick-nox11")
|
||||||
sudo("pkg install pkgconf")
|
sudo("pkg install -q -y pkgconf")
|
||||||
sudo("pkg install -q -y clang-devel")
|
sudo("pkg install -q -y clang-devel")
|
||||||
# set LIBCLANG_PATH so rustc can find libclang.so in its hidden place
|
# set LIBCLANG_PATH so rustc can find libclang.so in its hidden place
|
||||||
# (using the append operation results in 'Unmatched ".' error)
|
# (using the append operation results in 'Unmatched ".' error)
|
||||||
|
|||||||
2
vagrant/ubuntu14/fabfile.py
vendored
2
vagrant/ubuntu14/fabfile.py
vendored
@ -36,7 +36,7 @@ else:
|
|||||||
def all():
|
def all():
|
||||||
"""Install everything needed to build magick-rust."""
|
"""Install everything needed to build magick-rust."""
|
||||||
sudo('apt-get -q -y install git')
|
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
|
# the rustc and cargo packages are fairly old, so build from source
|
||||||
run('wget -q https://static.rust-lang.org/rustup.sh')
|
run('wget -q https://static.rust-lang.org/rustup.sh')
|
||||||
run('chmod +x rustup.sh')
|
run('chmod +x rustup.sh')
|
||||||
|
|||||||
Reference in New Issue
Block a user