Author: peterw
Date: Tue Oct 23 06:44:23 2007
New Revision: 29810
URL:
http://svn.reactos.org/svn/reactos?rev=29810&view=rev
Log:
- Remove the dependency on cut from sSVN.cmd.
Modified:
trunk/tools/RosBE-Windows/Root/sSVN.cmd
Modified: trunk/tools/RosBE-Windows/Root/sSVN.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/sSVN.cmd?…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/sSVN.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/sSVN.cmd Tue Oct 23 06:44:23 2007
@@ -56,8 +56,8 @@
::
if "%1" == "status" (
title Status
- for /f "usebackq" %%i in (`"svn info | find "Revision:" |
cut -d " " -f 2"`) do set OFFSVN=%%i
- for /f "usebackq" %%j in (`"svn info
svn://svn.reactos.org/reactos/trunk/reactos | find "Revision:" | cut -d "
" -f 2"`) do set ONSVN=%%j
+ for /f "usebackq tokens=2" %%i in (`"svn info | find
"Revision:""`) do set OFFSVN=%%i
+ for /f "usebackq tokens=2" %%j in (`"svn info
svn://svn.reactos.org/reactos/trunk/reactos | find "Revision:""`) do set
ONSVN=%%j
call :UP
goto :ExitSVN
)