From acb826ed471d05a6bab6a221d87e4e233198123d Mon Sep 17 00:00:00 2001 From: richardbarry Date: Thu, 6 Aug 2009 20:20:22 +0000 Subject: [PATCH] Correct the IF EXIST part of the batch file. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@832 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- .../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 -- 2.39.5