Skip to content

Commit

Permalink
Merge pull request #831 from savetheclocktower/fix-process-env
Browse files Browse the repository at this point in the history
Return to original logic for `ATOM_DISABLE_SHELLING_OUT_FOR_ENVIRONMENT`
  • Loading branch information
savetheclocktower authored Dec 15, 2023
2 parents f3b9bd8 + 146c412 commit f65a4e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pulsar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ else
fi

# Only set the ATOM_DISABLE_SHELLING_OUT_FOR_ENVIRONMENT env var if it hasn't been set.
: ${ATOM_DISABLE_SHELLING_OUT_FOR_ENVIRONMENT:=true}
if [ -z "$ATOM_DISABLE_SHELLING_OUT_FOR_ENVIRONMENT" ]
then
export ATOM_DISABLE_SHELLING_OUT_FOR_ENVIRONMENT=true
fi

ATOM_ADD=false
ATOM_NEW_WINDOW=false
Expand Down

0 comments on commit f65a4e1

Please sign in to comment.