bin/downloadkit.bat
author Dario Sestito <darios@symbian.org>
Thu, 10 Jun 2010 11:06:18 +0100
changeset 256 578dff671e26
parent 255 stubs/downloadkit.bat@87a39e76ac33
child 257 171a870d4d52
permissions -rw-r--r--
Rename 'stubs' as 'bin' as this is more appropriate
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
255
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     1
@REM Copyright (c) 2009 Symbian Foundation Ltd
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     2
@REM This component and the accompanying materials are made available
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     3
@REM under the terms of the License "Eclipse Public License v1.0"
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     4
@REM which accompanies this distribution, and is available
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     5
@REM at the URL "http://www.eclipse.org/legal/epl-v10.html".
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     6
@REM
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     7
@REM Initial Contributors:
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     8
@REM Symbian Foundation Ltd - initial contribution.
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
     9
@REM
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    10
@REM Contributors:
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    11
@REM
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    12
@REM Description:
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    13
@REM Invokes the tool by call to the related interpreter
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    14
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    15
@SETLOCAL
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    16
@IF NOT "%PDT_HOME%"=="" (
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    17
SET UTILITIES_HOME=%PDT_HOME%\utilities
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    18
) ELSE (
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    19
SET UTILITIES_HOME=%~dp0\..
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    20
)
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    21
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    22
@python %UTILITIES_HOME%\downloadkit\downloadkit.py %*
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    23
87a39e76ac33 Add stubs for the most commonly used tools
Dario Sestito <darios@symbian.org>
parents:
diff changeset
    24
@ENDLOCAL