Add scripts to thunk into the non-cygwin version of svn and python.
This is slightly messy but seemingly necessary because cygwin doesn't consider a .bat file when running the command without the .bat extension. TEST=shouldn't break everything BUG=none Review URL: http://codereview.chromium.org/125032 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@18337 0039d316-1c4b-4281-b951-d872f2087c98experimental/szager/collated-output
parent
2e50180403
commit
ac4b100a69
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
base_dir=$(dirname "$0")
|
||||||
|
|
||||||
|
exec "$base_dir/python.bat" "$@"
|
@ -1,4 +1,4 @@
|
|||||||
@echo off
|
@echo off
|
||||||
setlocal
|
setlocal
|
||||||
set PATH=%~dp0python;%PATH%
|
set PATH=%~dp0python_bin;%PATH%
|
||||||
"%~dp0python\python.exe" %*
|
"%~dp0python_bin\python.exe" %*
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
base_dir=$(dirname "$0")
|
||||||
|
|
||||||
|
exec "$base_dir/svn.bat" "$@"
|
@ -1,4 +1,4 @@
|
|||||||
@echo off
|
@echo off
|
||||||
setlocal
|
setlocal
|
||||||
set PATH=%~dp0svn;%PATH%
|
set PATH=%~dp0svn_bin;%PATH%
|
||||||
"%~dp0svn\svn.exe" %*
|
"%~dp0svn_bin\svn.exe" %*
|
||||||
|
Loading…
Reference in New Issue