From cca5582619c29100f3aea15ba5f3039a26ca0d7f Mon Sep 17 00:00:00 2001 From: "bradnelson@google.com" Date: Wed, 26 Jan 2011 23:36:23 +0000 Subject: [PATCH] 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 --- gclient | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gclient b/gclient index 330a966e8..924905060 100755 --- a/gclient +++ b/gclient @@ -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