File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -93,19 +93,21 @@ function find_lib_ker()
9393 error (" Could not find Mathematica or Wolfram Engine installation.\n Please set the `JULIA_MATHLINK` and `JULIA_MATHKERNEL` variables." )
9494end
9595
96+ @info " The JULIA_PKG_SERVER_REGISTRY_PREFERENCE variable"
97+ @info get (ENV , " JULIA_PKG_SERVER_REGISTRY_PREFERENCE" , " false" )
9698
9799if get (ENV , " JULIA_REGISTRYCI_AUTOMERGE" , " false" ) == " true"
98100 # We need to be able to install and load this package without error for
99101 # Julia's registry AutoMerge to work. Just write a fake Mathematica path.
100102 mlib = " "
101103 mker = " WolframKernel"
102104 @info " Pretending fake installation exists" mlib mker
103- elseif get (ENV , " ULIA_PKG_SERVER_REGISTRY_PREFERENCE " , " false" ) != " false"
105+ elseif get (ENV , " JULIA_PKG_SERVER_REGISTRY_PREFERENCE " , " false" ) != " false"
104106 # We need to be able to install and load this package without error for
105107 # Githubs CI checker to work. Just write a fake Mathematica path.
106108 mlib = " "
107109 mker = " WolframKernel"
108- @info " Pretending fake installation exists" mlib mker
110+ @info " Pretending fake Github CI installation exists" mlib mker
109111else
110112 mlib,mker = find_lib_ker ()
111113 @info " Installation found" mlib mker
You can’t perform that action at this time.
0 commit comments