Finish script

I screwed the dep installation
This commit is contained in:
Sir RaptaG 2023-07-03 18:34:35 +03:00 committed by GitHub
parent 396b14a230
commit 1dc8a4a292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,11 +50,13 @@ function install_deps(){
elif command_exists pacman; then elif command_exists pacman; then
pacman -Sy ${archDeps} pacman -Sy ${archDeps}
else else
# Deps # Maybe one day
# JsonCpp # # Deps
wget https://github.com/open-source-parsers/jsoncpp/tarball/master -O jsoncpp.tar.gz # # JsonCpp
tar -xf jsoncpp.tar.gz && cd open-source-parsers-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 fi
} }