Skip to content

Commit

Permalink
Update to account for new system image location
Browse files Browse the repository at this point in the history
And reformat for legibility
  • Loading branch information
tkelman committed Feb 21, 2014
1 parent 07f49f1 commit f9e59c1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion contrib/windows/prepare-julia-env.bat
Expand Up @@ -14,4 +14,10 @@ set JULIA=%JULIA_HOME%%JULIA_EXE%
set PATH=%SYS_PATH%

set private_libdir=bin
if not exist "%JULIA_HOME%..\bin\sys.ji" (echo "Preparing Julia for first launch. This may take a while" && echo "You may see two git related errors. This is completely normal" && cd "%JULIA_HOME%..\share\julia\base" && "%JULIA%" -b sysimg.jl && popd && pushd "%cd%")
if not exist "%JULIA_HOME%..\lib\julia\sys.ji" ( ^
echo "Preparing Julia for first launch. This may take a while" && ^
echo "You may see two git related errors. This is completely normal" && ^
cd "%JULIA_HOME%..\share\julia\base" && ^
"%JULIA%" --build "%JULIA_HOME%..\lib\julia\sys0" sysimg.jl && ^
"%JULIA%" --build "%JULIA_HOME%..\lib\julia\sys" -J sys0.ji sysimg.jl && ^
popd && pushd "%cd%" )

0 comments on commit f9e59c1

Please sign in to comment.