diff --git a/vendor/bin/install_console_audio_tools.sh b/vendor/bin/install_console_audio_tools.sh index 069c5fec..b1a66920 100644 --- a/vendor/bin/install_console_audio_tools.sh +++ b/vendor/bin/install_console_audio_tools.sh @@ -1,15 +1,7 @@ -sudo apt-key del 16126D3A3E5C1192 -sudo apt-get update -sudo apt-key finger -sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 16126D3A3E5C1192 -sudo apt-get update -sudo apt-get install ffmpeg mp3splt sox wavpack --fix-missing -sudo apt-get update +#!/usr/bin/env bash -# http://askubuntu.com/a/86445 apt-get clean # Remove cached packages -cd /var/lib/apt -mv lists lists.old # Backup mirror info -mkdir -p lists/partial # Recreate directory structure -apt-get clean -apt-get update # Fetch mirror info -sudo apt-key finger \ No newline at end of file +echo "Installing audio tools" +sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key 16126D3A3E5C1192 +sudo apt-get update -q +sudo apt-get install ffmpeg mp3splt sox wavpack --fix-missing +sudo apt-get update -q \ No newline at end of file