diff options
author | Unknown <stefan@stefan-mobile.dhcp4.washington.edu> | 2012-02-27 03:21:09 -0800 |
---|---|---|
committer | Unknown <stefan@stefan-mobile.dhcp4.washington.edu> | 2012-02-27 03:21:09 -0800 |
commit | 2afc9b08e720cc587b380ff32adc968bc170cb85 (patch) | |
tree | d030c8dcd71ba44dd4720bb6ba20c68f0dfcf4ae /Chalice | |
parent | 73cb09a2bc90c18325e765e753af3440e137e8de (diff) |
Chalice: Fix chalice.bat.
Diffstat (limited to 'Chalice')
-rw-r--r-- | Chalice/chalice.bat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Chalice/chalice.bat b/Chalice/chalice.bat index e4bbf5da..4741b467 100644 --- a/Chalice/chalice.bat +++ b/Chalice/chalice.bat @@ -11,12 +11,12 @@ if not %ERRORLEVEL%==0 ( goto :exit_with_error
)
-REM Get the Scala version, or rather, a string such as "scala-2.8.1"
-for /f "delims=" %%A in ('dir /b %ROOT_DIR%\project\boot\scala-*') do @set SCALA_DIR=%%A
+
+set SCALA_DIR=scala-2.8.1
REM Set classpath elements
-set __CP.SCALA_LIB=%ROOT_DIR%\project\boot\%SCALA_DIR%\lib\scala-library.jar
-set __CP.CHALICE=%ROOT_DIR%\target\%SCALA_DIR%.final\classes
+set __CP.SCALA_LIB=%ROOT_DIR%project\boot\%SCALA_DIR%\lib\scala-library.jar
+set __CP.CHALICE=%ROOT_DIR%target\%SCALA_DIR%.final\classes
REM Assemble classpath and check if all classpath elements exist
set CP=
|