Skip to content

Commit

Permalink
add link-check to 'exists'
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael 'v4hn' Goerner committed Aug 26, 2012
1 parent b1b4d06 commit 3df575c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/misc.lunar
Expand Up @@ -123,7 +123,7 @@ exists() {
debug_msg "exists ($@)"
local ITEM
while read ITEM ; do
if [ -e "$ITEM" ] ; then
if [ -e "$ITEM" ] || [ -L "$ITEM" ]; then
echo "$ITEM"
fi
done
Expand Down

0 comments on commit 3df575c

Please sign in to comment.