File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44# initialization (e.g. activating the venv) or giving recommendations on how to reach the desired state.
55# It also sets useful environment variables.
66# If you'd like to override or set any custom environment variables, this .envrc will read a .env file at the end.
7- set -e
7+ set -eu
88
99# Upgrading Mac can uninstall the Command Line Tools, thus, removing our access to git
1010# The message talks about xcrun, however, we can use the lack of git as a way to know that we need this
@@ -188,7 +188,7 @@ python3 -m tools.docker_memory_check
188188if [ " ${PWD##*/ } " = " sentry" ]; then
189189 debug " Checking node..."
190190
191- if [ " ${SENTRY_DEVENV_SKIP_FRONTEND} " != " 1" ]; then
191+ if [ " ${SENTRY_DEVENV_SKIP_FRONTEND:- } " != " 1" ]; then
192192 if ! require node; then
193193 die " You don't seem to have node installed. Please run devenv sync."
194194 fi
You can’t perform that action at this time.
0 commit comments