mirror of
https://github.com/the-sane/lug-helper.git
synced 2024-12-29 07:04:20 +00:00
fixed if statement in rm_shaders
This commit is contained in:
parent
b4d9598fe5
commit
65ac8ae4cd
@ -1516,7 +1516,7 @@ rm_shaders() {
|
|||||||
|
|
||||||
# Delete shaders directory in every directory beginning with "sc-alpha"
|
# Delete shaders directory in every directory beginning with "sc-alpha"
|
||||||
for (( i=0; i<"${#appdata_items[@]}"; i++ )); do
|
for (( i=0; i<"${#appdata_items[@]}"; i++ )); do
|
||||||
if [ "${appdata_items[i]}" = "$wine_prefix/$appdata_path"/sc-alpha* ] && [ -d "${appdata_items[i]}"/shaders ]; then # check if the item in the array begins with sc-alpha
|
if [[ "${appdata_items[i]}" = "$wine_prefix/$appdata_path"/sc-alpha* ]] && [[ -d "${appdata_items[i]}"/shaders ]]; then # check if the item in the array begins with sc-alpha
|
||||||
if message question "The following directory will be deleted:\n\n${appdata_items[i]}/shaders\n\nDo you want to proceed?"; then
|
if message question "The following directory will be deleted:\n\n${appdata_items[i]}/shaders\n\nDo you want to proceed?"; then
|
||||||
debug_print continue "Deleting ${appdata_items[i]}/shaders..."
|
debug_print continue "Deleting ${appdata_items[i]}/shaders..."
|
||||||
rm -r "${appdata_items[i]}/shaders"
|
rm -r "${appdata_items[i]}/shaders"
|
||||||
|
Loading…
Reference in New Issue
Block a user