Skip to content

Commit

Permalink
better fix for lein.bat, as per mtyaka's suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
bitsai committed Jul 11, 2011
1 parent 98574d9 commit 25a1b65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/lein.bat
Expand Up @@ -37,9 +37,9 @@ call :BUILD_UNIQUE_USER_PLUGINS
set CLASSPATH="%CLASSPATH%";%DEV_PLUGINS%;%UNIQUE_USER_PLUGINS%;test;src

:: Apply context specific CLASSPATH entries
set CONTEXT_CP=""
set CONTEXT_CP=
if exist ".classpath" set /P CONTEXT_CP=<.classpath
if NOT "%CONTEXT_CP%"=="""" set CLASSPATH="%CONTEXT_CP%";%CLASSPATH%
if NOT "%CONTEXT_CP%"=="" set CLASSPATH="%CONTEXT_CP%";%CLASSPATH%

if exist "%~f0\..\..\src\leiningen\core.clj" (
:: Running from source checkout.
Expand Down

0 comments on commit 25a1b65

Please sign in to comment.