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 4
4
# initialization (e.g. activating the venv) or giving recommendations on how to reach the desired state.
5
5
# It also sets useful environment variables.
6
6
# 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
8
8
9
9
# Upgrading Mac can uninstall the Command Line Tools, thus, removing our access to git
10
10
# 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
188
188
if [ " ${PWD##*/ } " = " sentry" ]; then
189
189
debug " Checking node..."
190
190
191
- if [ " ${SENTRY_DEVENV_SKIP_FRONTEND} " != " 1" ]; then
191
+ if [ " ${SENTRY_DEVENV_SKIP_FRONTEND:- } " != " 1" ]; then
192
192
if ! require node; then
193
193
die " You don't seem to have node installed. Please run devenv sync."
194
194
fi
You can’t perform that action at this time.
0 commit comments