Skip to content

Commit fd059a3

Browse files
committed
Fix #1327: redirect stderr from find_jar
1 parent 844bcbd commit fd059a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function find_jar {
2929
local artifact="$1/$2"
3030

3131
if [ ! -f "$artifact" ]; then
32-
artifact=$(find "$HOME/.coursier/cache" -iname "$2")
32+
artifact=$(find "$HOME/.coursier/cache" -iname "$2" 2> /dev/null)
3333
fi
3434

3535
echo "$artifact"

0 commit comments

Comments
 (0)