Skip to content

Commit

Permalink
chore(release): fix brew install hint in test-release.sh
Browse files Browse the repository at this point in the history
the actual brew install is coreutils, and not gtimeout
  • Loading branch information
stefreak authored and vvagaytsev committed Mar 6, 2023
1 parent 6c17c7f commit fce3c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ test_release() {
# Mac doesn't have a timeout command so we alias to gtimeout (or exit if gtimeout is not installed).
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! [ -x "$(command -v gtimeout)" ]; then
echo "Command gtimeout is missing - You can install it with 'brew install gtimeout' on macOS"
echo "Command gtimeout is missing - You can install it with 'brew install coreutils' on macOS"
return 1
else
alias timeout=gtimeout
Expand Down

0 comments on commit fce3c87

Please sign in to comment.