Skip to content

Commit 36358fe

Browse files
authored
Output errors from helper scripts to stderr (#156)
1 parent d3befc3 commit 36358fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/linux/find.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# This script is needed for macOS support.
33

44
if [[ $BASH_VERSION =~ ^[3] ]]; then
5-
echo "Install a newer Bash version with 'brew install bash'"
5+
echo "Install a newer Bash version with 'brew install bash'" >&2
66
exit 1
77
fi
88

99
if which xcode-select >/dev/null 2>&1; then
1010
# macOS
1111
FIND="$(which gfind)"
1212
if [[ ! -e $FIND ]]; then
13-
echo "Install gnu-find with 'brew install findutils'"
13+
echo "Install gnu-find with 'brew install findutils'" >&2
1414
exit 1
1515
fi
1616
else

0 commit comments

Comments
 (0)