From fd059a38477d0a267262a4555f7896f0f256f10e Mon Sep 17 00:00:00 2001 From: Felix Mulder Date: Wed, 22 Jun 2016 14:56:46 +0200 Subject: Fix #1327: redirect stderr from find_jar --- bin/common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/common b/bin/common index dfca4ab43..aad672e40 100755 --- a/bin/common +++ b/bin/common @@ -29,7 +29,7 @@ function find_jar { local artifact="$1/$2" if [ ! -f "$artifact" ]; then - artifact=$(find "$HOME/.coursier/cache" -iname "$2") + artifact=$(find "$HOME/.coursier/cache" -iname "$2" 2> /dev/null) fi echo "$artifact" -- cgit v1.2.3