Removed superfile and thunar from the default downloads

This commit is contained in:
Michel Fedde 2025-02-23 18:59:11 +01:00
parent 3a685df812
commit bf03c131b5
3 changed files with 2 additions and 3 deletions

View file

@ -39,7 +39,7 @@ fi
declare -a bootstraps
while IFS= read -r bootstrap; do
if [[ -x "$bootstrap" && ! "$bootstrap" =~ "##" && ! "$bootstrap" =~ ~$ ]]; then
if [[ -x "$bootstrap" && ! "$bootstrap" =~ "##" && ! "$bootstrap" =~ ~$ && ! "$bootstrap" =~ ".bak" ]]; then
bootstraps+=("$bootstrap")
fi
done < <(find -L "$BOOTSTRAP_D" -type f | sort)