- Remove the need for cutz.cmd and delete it.

svn path=/trunk/tools/RosBE-Windows/; revision=434
This commit is contained in:
Peter Ward 2007-10-23 00:27:32 +00:00
parent 64b2026d6c
commit 66666c9ed2
2 changed files with 1 additions and 13 deletions

View File

@ -57,7 +57,7 @@ if "%1" == "create" (
if "%1" == "status" (
title Status
for /f "usebackq" %%i in (`svnversion .`) do set OFFSVN=%%i
for /f "usebackq" %%j in (`"svn info svn://svn.reactos.org/reactos/trunk/reactos|find "Revision:"|cutz svn"`) do set ONSVN=%%j
for /f "usebackq" %%j in (`"svn info svn://svn.reactos.org/reactos/trunk/reactos | find "Revision:" | cut -d " " -f 2"`) do set ONSVN=%%j
call :UP
goto :ExitSVN
)

View File

@ -1,12 +0,0 @@
::
:: PROJECT: RosBE - ReactOS Build Environment for Windows
:: LICENSE: GPL - See COPYING in the top level directory
:: FILE: Tools/cutz.cmd
:: PURPOSE: Bypass a stupid bug in cut.
:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel@freenet.de>
::
::
@echo off
if "%1" == "svn" (
cut -d " " -f 2
)