File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ public static String getSysBasePrefix(TruffleLanguage.Env env) {
130130 String sysPrefix = env .getOptions ().get (PythonOptions .SysBasePrefix );
131131 if (sysPrefix .isEmpty ()) {
132132 String homePrefix = PythonLanguage .getCurrent ().getHome ();
133- if (homePrefix .isEmpty ()) {
133+ if (homePrefix == null || homePrefix .isEmpty ()) {
134134 homePrefix = PREFIX ;
135135 }
136136 env .getOptions ().set (PythonOptions .SysBasePrefix , homePrefix );
Original file line number Diff line number Diff line change 99 "name" : "graalpython" ,
1010 "versionConflictResolution" : "latest" ,
1111
12- "version" : "1.0.0-rc13 " ,
12+ "version" : "1.0.0-rc14 " ,
1313 "release" : False ,
1414 "groupId" : "org.graalvm.graalpython" ,
1515 "url" : "http://www.graalvm.org/" ,
You can’t perform that action at this time.
0 commit comments