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()
93
93
error (" Could not find Mathematica or Wolfram Engine installation.\n Please set the `JULIA_MATHLINK` and `JULIA_MATHKERNEL` variables." )
94
94
end
95
95
96
+ @info " The JULIA_PKG_SERVER_REGISTRY_PREFERENCE variable"
97
+ @info get (ENV , " JULIA_PKG_SERVER_REGISTRY_PREFERENCE" , " false" )
96
98
97
99
if get (ENV , " JULIA_REGISTRYCI_AUTOMERGE" , " false" ) == " true"
98
100
# We need to be able to install and load this package without error for
99
101
# Julia's registry AutoMerge to work. Just write a fake Mathematica path.
100
102
mlib = " "
101
103
mker = " WolframKernel"
102
104
@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"
104
106
# We need to be able to install and load this package without error for
105
107
# Githubs CI checker to work. Just write a fake Mathematica path.
106
108
mlib = " "
107
109
mker = " WolframKernel"
108
- @info " Pretending fake installation exists" mlib mker
110
+ @info " Pretending fake Github CI installation exists" mlib mker
109
111
else
110
112
mlib,mker = find_lib_ker ()
111
113
@info " Installation found" mlib mker
You can’t perform that action at this time.
0 commit comments