Remove comments

This commit is contained in:
Santiago Lo Coco 2024-04-14 14:30:03 +02:00
parent 358f3931a0
commit 968936dc73
1 changed files with 0 additions and 1 deletions

View File

@ -20,7 +20,6 @@ update_cache() {
)
fi
#find . "${locations[@]}" -maxdepth 2 -name "*.app" -type d | gxargs -d '\n' basename | sed 's/\.app$//' | ( [ -f "$configDir/.open_ignore" ] && grep -v -f "$configDir/.open_ignore" || cat -) | ([ -f "$configDir/.open_add" ] && cat "$configDir/.open_add"; cat -) | sort -u > "$cacheFile"
find . "${locations[@]}" -maxdepth 2 -name "*.app" -type d | gxargs -d '\n' basename | sed 's/\.app$//' | ({ [ -f "$configDir/.open_ignore" ] && grep -v -f "$configDir/.open_ignore"; } || cat -) | ([ -f "$configDir/.open_add" ] && cat "$configDir/.open_add"; cat -) | sort -u > "$cacheFile"
fi
}