only add path to LOAD_PATH if it is not already there

time-shift
Houtan Bastani 2015-08-17 12:29:59 +02:00
parent 96869fbd76
commit a917d5e998
2 changed files with 7 additions and 3 deletions

View File

@ -21,8 +21,10 @@ module Dynare
export dynare, @dynare
function dynare(modfile)
# Add cd to path
unshift!(LOAD_PATH, pwd())
# Add cd to path if not already there
if isempty(findin([pwd()], LOAD_PATH))
unshift!(LOAD_PATH, pwd())
end
# Process modfile
println(string("Using ", WORD_SIZE, "-bit preprocessor"))

View File

@ -2,7 +2,9 @@
workspace()
# Modification of the path (for packages). Should be done in ~/.juliarc.jl with a fixed path instead.
unshift!(LOAD_PATH, abspath("../../../julia"))
if isempty(findin([abspath("../../../julia")], LOAD_PATH))
unshift!(LOAD_PATH, abspath("../../../julia"))
end
# Load Dynare package
importall Dynare