Skip to content

Commit 1593908

Browse files
authored
julia_project.py: fix Pkg REPL api warning
1 parent 239c4f5 commit 1593908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repo2docker/buildpacks/julia/julia_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def get_assemble_scripts(self):
177177
"${NB_USER}",
178178
r"""
179179
JULIA_PROJECT="" julia -e "using Pkg; Pkg.add(\"IJulia\"); using IJulia; installkernel(\"Julia\", \"--project={project}\");" && \
180-
julia --project={project} -e 'using Pkg; Pkg.instantiate(); Pkg.resolve(); pkg"precompile"'
180+
julia --project={project} -e 'using Pkg; Pkg.instantiate(); Pkg.resolve(); Pkg.instantiate()'
181181
""".format(
182182
project=self.project_dir
183183
),

0 commit comments

Comments
 (0)