|
@@ -15,9 +15,6 @@ if [[ $GCLIENT_PY3 = 1 ]]; then
|
|
|
elif [[ $GCLIENT_PY3 = 0 ]]; then
|
|
|
# Explicitly run on Python 2
|
|
|
PYTHONDONTWRITEBYTECODE=1 exec vpython "$base_dir/roll_dep.py" "$@"
|
|
|
-elif [[ $(uname -s) = MINGW* || $(uname -s) = CYGWIN* ]]; then
|
|
|
- # Run on Python 2 on Windows for now, allows default to be flipped.
|
|
|
- PYTHONDONTWRITEBYTECODE=1 exec vpython "$base_dir/roll_dep.py" "$@"
|
|
|
else
|
|
|
# Run on Python 2 for now, allows default to be flipped.
|
|
|
PYTHONDONTWRITEBYTECODE=1 exec vpython3 "$base_dir/roll_dep.py" "$@"
|