You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If user hasn't done anything with Homebrew before (or other package managers), then the usual curl get.bw2.io/agent | sh' install will fail because it assumes existence of /usr/local/bin`.
Fix: something like
#!/bin/shif [ !-e /usr/local/bin ];then
mkdir -p /usr/local/bin
fi
The text was updated successfully, but these errors were encountered:
Yeah, I guess it would, but I thought it might give an error if it already existed and if you had set -ex on, then I thought I would save the trouble of trying to do directory detection
If user hasn't done anything with Homebrew before (or other package managers), then the usual
curl get.bw2.io/agent | sh' install will fail because it assumes existence of
/usr/local/bin`.Fix: something like
The text was updated successfully, but these errors were encountered: