diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-01-12 15:28:48 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-01-12 15:28:48 -0300 |
commit | 9c4a744878a1d3a143e18a338a07e6cbdcb3dd01 (patch) | |
tree | ea0f95464425dfb198674e87712c1ef510ce8b9c | |
parent | e2b29d19e1ab81654b17168ace45ea1db88e713e (diff) | |
download | trashman-9c4a744878a1d3a143e18a338a07e6cbdcb3dd01.tar.gz trashman-9c4a744878a1d3a143e18a338a07e6cbdcb3dd01.tar.bz2 |
Fix: trashman: spotx: update repo and bump version
-rwxr-xr-x | share/trashman/spotx/unix/linux/install | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/share/trashman/spotx/unix/linux/install b/share/trashman/spotx/unix/linux/install index d69acfe..80b471d 100755 --- a/share/trashman/spotx/unix/linux/install +++ b/share/trashman/spotx/unix/linux/install @@ -2,7 +2,8 @@ # Parameters SHARE="$1" -COMMIT="c954826f9e659b4a3a684c9903a1eeec2980b0b5" +REPO="https://github.com/Nuzair46/SpotX-Linux" +COMMIT="b3357f3f514351b5beea82687a1733faed4dcac4" # Include basic functions . $SHARE/trashman/functions || exit 1 @@ -12,7 +13,7 @@ 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 + git clone $REPO /usr/local/src/spotx || exit 1 fi # Use the latest version |