follow symlinks for cheatsheet directories

This commit is contained in:
amelia 2019-10-23 14:36:48 -04:00
parent bcf3f3576a
commit e8a70265f5

View File

@ -2,7 +2,7 @@
cheat::find() {
for path in $(echo "$NAVI_PATH" | tr ':' '\n'); do
find "$path" -iname '*.cheat'
find -L "$path" -iname '*.cheat'
done
}