Merge pull request #26 from devomaa/main

Make unzip overwrite files if already existing in cache.
This commit is contained in:
Julien 2021-07-22 16:08:52 +02:00 committed by GitHub
commit 77f281bd11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ curl --fail --location --progress-bar --output "$tar_file" "$download_uri"
cd "$spicetify_install"
echo "EXTRACTING $tar_file"
unzip "$tar_file"
unzip -o "$tar_file"
echo "REMOVING $tar_file"
rm "$tar_file"