From 951a6bf2a0e77b6fc9523c938d8256d656c2ee94 Mon Sep 17 00:00:00 2001 From: Yashas Hebbarabailu Date: Sat, 15 Dec 2018 20:13:01 +0530 Subject: [PATCH] Update install.sh Previous URL for Perfect EQ preset was not giving raw json file. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index b7ccc30..65e4c88 100755 --- a/install.sh +++ b/install.sh @@ -48,10 +48,10 @@ install_presets(){ echo "Installing Boosted preset..." curl "https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/master/Boosted.json" --output "$PRESETS_DIRECTORY/Boosted.json" --silent echo "Installing Perfect EQ preset..." - curl "https://github.com/JackHack96/PulseEffects-Presets/blob/master/Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/Perfect EQ.json" --silent + curl "https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/master/Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/Perfect EQ.json" --silent ;; 2) echo "Installing Perfect EQ preset..." - curl "https://github.com/JackHack96/PulseEffects-Presets/blob/master/Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/Perfect EQ.json" --silent + curl "https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/master/Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/Perfect EQ.json" --silent ;; 3) echo "Installing Bass Enhancing + Perfect EQ preset..." curl "https://raw.githubusercontent.com/JackHack96/PulseEffects-Presets/master/Bass%20Enhancing%20%2B%20Perfect%20EQ.json" --output "$PRESETS_DIRECTORY/Bass Enhancing + Perfect EQ.json" --silent