stubs/downloadkit.bat
changeset 278 87a39e76ac33
equal deleted inserted replaced
277:e7df00ade863 278:87a39e76ac33
       
     1 @REM Copyright (c) 2009 Symbian Foundation Ltd
       
     2 @REM This component and the accompanying materials are made available
       
     3 @REM under the terms of the License "Eclipse Public License v1.0"
       
     4 @REM which accompanies this distribution, and is available
       
     5 @REM at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     6 @REM
       
     7 @REM Initial Contributors:
       
     8 @REM Symbian Foundation Ltd - initial contribution.
       
     9 @REM
       
    10 @REM Contributors:
       
    11 @REM
       
    12 @REM Description:
       
    13 @REM Invokes the tool by call to the related interpreter
       
    14 
       
    15 @SETLOCAL
       
    16 @IF NOT "%PDT_HOME%"=="" (
       
    17 SET UTILITIES_HOME=%PDT_HOME%\utilities
       
    18 ) ELSE (
       
    19 SET UTILITIES_HOME=%~dp0\..
       
    20 )
       
    21 
       
    22 @python %UTILITIES_HOME%\downloadkit\downloadkit.py %*
       
    23 
       
    24 @ENDLOCAL