Commit cf1e53b6 authored by maruel@chromium.org's avatar maruel@chromium.org

Fix the gclient trampoline on cygwin to redirect to the batch file.

TBR=bradnelson
Review URL: http://codereview.chromium.org/115061

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@15496 0039d316-1c4b-4281-b951-d872f2087c98
parent 714acb11
......@@ -7,6 +7,13 @@
base_dir=$(dirname "$0")
# Use the batch file as an entry point if on cygwin.
if [ "${OSTYPE}" = "cygwin" ]; then
${base_dir}/gclient.bat $*
exit
fi
if [ "X$DEPOT_TOOLS_UPDATE" != "X0" -a -e "$base_dir/.svn" ]
then
# Update the bootstrap directory to stay up-to-date with the latest
......
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