This commit is contained in:
jetfir3
2024-05-24 11:55:24 -04:00
committed by GitHub
parent 82a390ef9b
commit fc1de0b5ad
+5 -4
View File
@@ -195,10 +195,11 @@ macos_autoupdate_check() {
rm -rf "${autoupdatePath}" 2>/dev/null rm -rf "${autoupdatePath}" 2>/dev/null
echo -e "${green}Notice:${clr} Deleted stock auto-update file waiting to be installed" echo -e "${green}Notice:${clr} Deleted stock auto-update file waiting to be installed"
} }
altAutoupdatePath=$(find /Users/*/Library/Application\ Support/Spotify/PersistentCache/Update -type d 2>/dev/null) local altAutoupdatePath=$(find /Users/*/Library/Application\ Support/Spotify/PersistentCache/Update -type d 2>/dev/null)
local dir; for dir in $altAutoupdatePath; do local dir
for dir in $altAutoupdatePath; do
[[ -d "${dir}" && "$(ls -A "${dir}")" ]] && { [[ -d "${dir}" && "$(ls -A "${dir}")" ]] && {
echo -e "\n${yellow}Warning:${clr} Potential auto-update file found...\nManual deletion recommended: ${dir}\n" echo -e "\n${yellow}Warning:${clr} Potential auto-update file found...\nManual deletion required: ${dir}\n" >&2
} }
done done
} }
@@ -613,7 +614,7 @@ xpui_open() {
[[ -z "${clientVer}" ]] && { [[ -z "${clientVer}" ]] && {
clientVer="${sxbVer}" clientVer="${sxbVer}"
unknownVer='true' unknownVer='true'
echo -e "\n${red}Warning:${clr} Client version not detected, some features may not be applied\n" echo -e "\n${red}Warning:${clr} Client version not detected, some features may not be applied\n" >&2
} || { } || {
(( $(ver "${clientVer}") < $(ver "1.1.59.710") )) && { (( $(ver "${clientVer}") < $(ver "1.1.59.710") )) && {
uninstall_spotx uninstall_spotx