diff --git a/clauncher b/clauncher index 2c9a8a3..29f2950 100755 --- a/clauncher +++ b/clauncher @@ -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 }