Author: peterw Date: Tue Dec 11 18:59:44 2007 New Revision: 31147
URL: http://svn.reactos.org/svn/reactos?rev=31147&view=rev Log: - Remove the yes/no verification added in r31142 and fix a couple typos.
Modified: trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd trunk/tools/RosBE/RosBE-Windows/Root/Help.cmd
Modified: trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/Clea... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd (original) +++ trunk/tools/RosBE/RosBE-Windows/Root/Clean.cmd Tue Dec 11 18:59:44 2007 @@ -9,13 +9,6 @@ :: @echo off
-echo Do you REALLY want to continue? -set /p YESNO="(yes), (no)" -if /i "%YESNO%"=="yes" goto :CONT -if /i "%YESNO%"=="no" goto :EOC -goto :NOK - -:CONT title Cleaning...
if "%1" == "" ( @@ -38,7 +31,7 @@
:LOG :: -: Check if we have any logs to clean, if so, clean them. +:: Check if we have any logs to clean, if so, clean them. :: if exist "%_ROSBE_LOGDIR%*.txt" ( echo Cleaning build logs... @@ -47,15 +40,14 @@ ) else ( echo ERROR: There are no logs to clean. ) -goto :EOC +goto :EOF
:DEL :: -: Check if we have something to clean, if so, clean it. +:: Check if we have something to clean, if so, clean it. :: if exist "obj-i386." ( echo Cleaning ReactOS source directory... - :: : Remove directories/makefile.auto created by the build. :: @@ -75,7 +67,7 @@ ) else ( echo ERROR: There is no Compiler Output to clean. ) -goto :EOC +goto :EOF
:EOC title ReactOS Build Environment %_ROSBE_VERSION%
Modified: trunk/tools/RosBE/RosBE-Windows/Root/Help.cmd URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/Root/Help... ============================================================================== --- trunk/tools/RosBE/RosBE-Windows/Root/Help.cmd (original) +++ trunk/tools/RosBE/RosBE-Windows/Root/Help.cmd Tue Dec 11 18:59:44 2007 @@ -113,7 +113,7 @@ echo Usage: clean [logs] echo Fully clean the ReactOS source directory. echo. - echo all - Removes build logs and Compiler Output in the RosBE-Logs directory. + echo all - Removes build logs and compiler output in the RosBE-Logs directory. echo logs - Removes all build logs in the RosBE-Logs directory. goto :EOC )