Skip to content

Commit

Permalink
changed grep statement to match 2 patterns
Browse files Browse the repository at this point in the history
Now matches both "anaconda" and "continuum analytics"
  • Loading branch information
matthdsm committed May 17, 2016
1 parent 90c48ff commit ea2e916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/common_startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ for arg in "$@"; do
done

# Conda Python is in use, do not use virtualenv
if python -V 2>&1 | grep -q 'Anaconda'; then
if python -V 2>&1 | grep -q -e 'Anaconda' -e 'Continuum Analytics' ; then
SET_VENV=0
fi

Expand Down

0 comments on commit ea2e916

Please sign in to comment.