Made Vagrant's provisioning script install ImageMagick and run apt-get quietly.

This commit is contained in:
Peter Deltchev 2015-09-03 19:05:58 -07:00
parent fe22c9547e
commit 6219ee2e5b

View file

@ -1,10 +1,13 @@
sudo apt-get update
#!/usr/bin/env bash
echo "Installing tagging tools"
sudo apt-get install -y AtomicParsley flac vorbis-tools
echo "Running apt-get update..."
sudo apt-get -qq update
echo "Installing ffmpeg dependencies"
sudo apt-get install -y pkg-config yasm libfaac-dev libmp3lame-dev libvorbis-dev
echo "Installing tagging tools..."
sudo apt-get -qq install -y AtomicParsley flac vorbis-tools imagemagick
echo "Installing ffmpeg dependencies.."
sudo apt-get -qq install -y pkg-config yasm libfaac-dev libmp3lame-dev libvorbis-dev
if type ffmpeg &>/dev/null; then