I have a .juliarc.jl which pushes a folder to LOAD_PATH. When I try to build_executable a script which uses a package in that folder I get a
LoadError("C:\\Users\\amellnik\\Documents\\Julia libraries\\Foo\\src\\build.jl",
1,ArgumentError("Module Foo not found in current path.\nRun `Pkg.add(\"Foo\")`
to install the Foo package."))))
error, although using Foo works when running the script or in the REPL.
I have a
.juliarc.jl
which pushes a folder toLOAD_PATH
. When I try tobuild_executable
a script which uses a package in that folder I get aerror, although
using Foo
works when running the script or in the REPL.