From 243460eabc990ee6f62cb0310045fd5c6aa9393b Mon Sep 17 00:00:00 2001 From: pjals Date: Thu, 22 Jul 2021 16:22:36 +0300 Subject: [PATCH 1/3] Update install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 4f8eb96..19badb7 100644 --- a/install.sh +++ b/install.sh @@ -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 "$tar_file" | yes echo "REMOVING $tar_file" rm "$tar_file" @@ -44,7 +44,7 @@ if [ ! -d "$sp_dot_dir" ]; then fi echo "COPYING" -cp -rf "$spicetify_install/dribbblish-dynamic-theme-${version}/." "$sp_dot_dir" +cp -rf "$spicetify_install/dribbblish-dynamic-theme-${version}/." "$sp_dot_dir" | yes echo "INSTALLING" cd "$(dirname "$(spicetify -c)")/Themes/DribbblishDynamic" From d7b4630b6f5342bf80f7fc816ee50577952654a9 Mon Sep 17 00:00:00 2001 From: pjals Date: Thu, 22 Jul 2021 16:24:02 +0300 Subject: [PATCH 2/3] Update install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 19badb7..eed1b26 100644 --- a/install.sh +++ b/install.sh @@ -31,7 +31,7 @@ curl --fail --location --progress-bar --output "$tar_file" "$download_uri" cd "$spicetify_install" echo "EXTRACTING $tar_file" -unzip "$tar_file" | yes +unzip "$tar_file" -o echo "REMOVING $tar_file" rm "$tar_file" @@ -44,7 +44,7 @@ if [ ! -d "$sp_dot_dir" ]; then fi echo "COPYING" -cp -rf "$spicetify_install/dribbblish-dynamic-theme-${version}/." "$sp_dot_dir" | yes +cp -rf "$spicetify_install/dribbblish-dynamic-theme-${version}/." "$sp_dot_dir" echo "INSTALLING" cd "$(dirname "$(spicetify -c)")/Themes/DribbblishDynamic" From c84620fcaefe1511611ca090774603d0e9edeb83 Mon Sep 17 00:00:00 2001 From: pjals Date: Thu, 22 Jul 2021 16:28:47 +0300 Subject: [PATCH 3/3] Update install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index eed1b26..684da1e 100644 --- a/install.sh +++ b/install.sh @@ -31,7 +31,7 @@ curl --fail --location --progress-bar --output "$tar_file" "$download_uri" cd "$spicetify_install" echo "EXTRACTING $tar_file" -unzip "$tar_file" -o +unzip -o "$tar_file" echo "REMOVING $tar_file" rm "$tar_file"