Commit cca55826 authored by bradnelson@google.com's avatar bradnelson@google.com

Unconditionally run gclient.bat on cygwin, as gyp doesn't work right when

run through cygwin python anymore (and fails subtlety).

BUG=None
TEST=None
RS=pkasting

Review URL: http://codereview.chromium.org/6400002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@72718 0039d316-1c4b-4281-b951-d872f2087c98
parent 21548eb0
......@@ -7,7 +7,7 @@ base_dir=$(dirname "$0")
# Use the batch file as an entry point if on cygwin. Needs to happen before
# the call to update the tools or the update will happen twice.
if [ "${OSTYPE}" = "cygwin" -a "${TERM}" != "xterm" ]; then
if [ "${OSTYPE}" = "cygwin" ]; then
${base_dir}/gclient.bat "$@"
exit
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment