Follow symbolic links

This commit is contained in:
Oliver Davies 2024-12-16 17:59:37 +00:00
parent 452f5875ce
commit b1f817b82d

View file

@ -33,7 +33,7 @@ pkgs.writeShellApplication {
if [[ $# -eq 1 ]]; then
selected=$1
else
selected=$(find ~/ ~/Code ~/Code/personal ~/Code/os ~/Documents -mindepth 1 -maxdepth 1 -type d ! -name "*.old" | fzf)
selected=$(find -L ~/ ~/Code ~/Code/personal ~/Code/os ~/Documents -mindepth 1 -maxdepth 1 -type d ! -name "*.old" | fzf)
fi
if [[ -z "$selected" ]]; then