Skip to content

Commit af4d1ee

Browse files
committed
build: Quiet errors from realpath
If the output directory doesn't exist yet realpath will print a warning, suppress it.
1 parent 2ac78f7 commit af4d1ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/scripts/lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function get_output_dir()
8989
d="$d@$version"
9090
fi
9191

92-
d=$(realpath $d)
92+
d=$(realpath -q $d)
9393
echo "$d"
9494

9595
return 0

0 commit comments

Comments
 (0)