From 1dc8a4a29208ab818fd5ace740780f7aec0c7417 Mon Sep 17 00:00:00 2001 From: Sir RaptaG <77157639+RaptaG@users.noreply.github.com> Date: Mon, 3 Jul 2023 18:34:35 +0300 Subject: [PATCH] Finish script I screwed the dep installation --- scripts/install.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 313762c0..4d54c069 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -50,11 +50,13 @@ function install_deps(){ elif command_exists pacman; then pacman -Sy ${archDeps} else - # Deps - # JsonCpp - wget https://github.com/open-source-parsers/jsoncpp/tarball/master -O jsoncpp.tar.gz - tar -xf jsoncpp.tar.gz && cd open-source-parsers-jsoncpp-* - + # Maybe one day + # # Deps + # # JsonCpp + # wget https://github.com/open-source-parsers/jsoncpp/tarball/master -O jsoncpp.tar.gz + # tar -xf jsoncpp.tar.gz && cd open-source-parsers-jsoncpp-* + echo 'You have to install some dependancies manually in order for Spotube to work.' + echo "The deps are the following: ${rpmDeps}" fi }