Skip to content

Commit bed561d

Browse files
committed
Quiet errors, as given directories may not exist.
1 parent 3ac4142 commit bed561d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Functions/Alien

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In_Version_Range() {
1515
Symlink_Aliens() {
1616
targetdir="$1"
1717
shift
18-
find "$@" -mindepth 1 | while read entry
18+
find "$@" -mindepth 1 2> /dev/null | while read entry
1919
do
2020
local bname="${entry##*/}"
2121
local targetfile="$targetdir/$bname"

0 commit comments

Comments
 (0)