#!/bin/bash # Parameters SHARE="$1" COMMIT="c954826f9e659b4a3a684c9903a1eeec2980b0b5" # Include basic functions . $SHARE/trashman/functions || exit 1 # Requirements trashman install spotify || exit 1 # Download if [ ! -d "/usr/local/src/spotx" ]; then git clone https://github.com/SpotX-CLI/SpotX-Linux /usr/local/src/spotx || exit 1 fi # Use the latest version #git -C /usr/local/src/spotx pull # Checkout an specific version git -C /usr/local/src/spotx checkout $COMMIT || exit 1 # Install bash /usr/local/src/spotx/install.sh || exit 1