Follow symbolic links
This commit is contained in:
parent
452f5875ce
commit
b1f817b82d
|
@ -33,7 +33,7 @@ pkgs.writeShellApplication {
|
||||||
if [[ $# -eq 1 ]]; then
|
if [[ $# -eq 1 ]]; then
|
||||||
selected=$1
|
selected=$1
|
||||||
else
|
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
|
fi
|
||||||
|
|
||||||
if [[ -z "$selected" ]]; then
|
if [[ -z "$selected" ]]; then
|
||||||
|
|
Loading…
Reference in a new issue