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
Even if go is not installed (or is not on the $PATH, which is more likelier), the script goes on and executes completely. Two solutions: 1. Check if go is present, and fail if not. 2. Pass -e flag to the bash script (set -e), which will make the script fail as soon as first error is encountered (but we might not want this)
The text was updated successfully, but these errors were encountered:
We should probably run with 'set -e' but we'd need to clean up bootstrap.sh and dev.env first. I think there are places where we're ok with things failing, so we'd need to fix those so they don't derail everything.
Even if go is not installed (or is not on the $PATH, which is more likelier), the script goes on and executes completely. Two solutions: 1. Check if go is present, and fail if not. 2. Pass -e flag to the bash script (set -e), which will make the script fail as soon as first error is encountered (but we might not want this)
The text was updated successfully, but these errors were encountered: