From 3f3a0917288feb2ebe80d0db39ecd7f1e0d81ce7 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Thu, 6 Aug 2009 20:20:22 +0000 Subject: [PATCH] Correct the IF EXIST part of the batch file. --- .../CreateProjectDirectoryStructure.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Demo/CORTEX_LPC1768_GCC_RedSuite/CreateProjectDirectoryStructure.bat b/Demo/CORTEX_LPC1768_GCC_RedSuite/CreateProjectDirectoryStructure.bat index dd8697262..7f47f1d43 100644 --- a/Demo/CORTEX_LPC1768_GCC_RedSuite/CreateProjectDirectoryStructure.bat +++ b/Demo/CORTEX_LPC1768_GCC_RedSuite/CreateProjectDirectoryStructure.bat @@ -1,6 +1,6 @@ REM This file should be executed from the command line prior to the first REM build. It will be necessary to refresh the Eclipse project once the -REM .bat file has been executed (normally just press F5 to refresh. +REM .bat file has been executed (normally just press F5 to refresh). REM Copies all the required files from their location within the standard REM FreeRTOS directory structure to under the Eclipse project directory. @@ -8,7 +8,7 @@ REM This permits the Eclipse project to be used in 'managed' mode and without REM having to setup any linked resources. REM Have the files already been copied? -IF EXIST FreeRTOS Goto END +IF EXIST src\FreeRTOS Goto END REM Create the required directory structure. MD src\FreeRTOS