diff options
author | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-25 20:34:36 +0000 |
---|---|---|
committer | lhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-10-25 20:34:36 +0000 |
commit | 8aa9a1a22a1f3717dc077097be8e0f976a4889d6 (patch) | |
tree | 549a5f876e2b1ecf8ab1b5ecc3120da94ed9b1e1 /Tools/bin/ContextTool.bat | |
parent | 94e17f11903941b62092a839ea2abbfcbc50353a (diff) | |
download | edk2-platforms-8aa9a1a22a1f3717dc077097be8e0f976a4889d6.tar.xz |
Added quotes around the classpath option in script files
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1841 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/bin/ContextTool.bat')
-rw-r--r-- | Tools/bin/ContextTool.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/bin/ContextTool.bat b/Tools/bin/ContextTool.bat index 407c2e76a1..75bbb6ce8e 100644 --- a/Tools/bin/ContextTool.bat +++ b/Tools/bin/ContextTool.bat @@ -28,8 +28,8 @@ if not exist %WORKSPACE%\Tools\Jars\ContextTool.jar ( goto no_ContextTool
)
-@REM Run Framework Wizard
-java -cp %WORKSPACE%\Tools\Jars\ContextTool.jar org.tianocore.context.ContextMain %*
+@REM Run ContextTool
+java -cp "%WORKSPACE%\Tools\Jars\ContextTool.jar" org.tianocore.context.ContextMain %*
goto end
|