From 6219ee2e5b9285869530bc4b9596bb2d50161fc6 Mon Sep 17 00:00:00 2001 From: Peter Deltchev Date: Thu, 3 Sep 2015 19:05:58 -0700 Subject: [PATCH] Made Vagrant's provisioning script install ImageMagick and run apt-get quietly. --- vagrant/install.sh | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/vagrant/install.sh b/vagrant/install.sh index 2c67ecd8..8832e0b2 100755 --- a/vagrant/install.sh +++ b/vagrant/install.sh @@ -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