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) {
130
130
String sysPrefix = env .getOptions ().get (PythonOptions .SysBasePrefix );
131
131
if (sysPrefix .isEmpty ()) {
132
132
String homePrefix = PythonLanguage .getCurrent ().getHome ();
133
- if (homePrefix .isEmpty ()) {
133
+ if (homePrefix == null || homePrefix .isEmpty ()) {
134
134
homePrefix = PREFIX ;
135
135
}
136
136
env .getOptions ().set (PythonOptions .SysBasePrefix , homePrefix );
Original file line number Diff line number Diff line change 9
9
"name" : "graalpython" ,
10
10
"versionConflictResolution" : "latest" ,
11
11
12
- "version" : "1.0.0-rc13 " ,
12
+ "version" : "1.0.0-rc14 " ,
13
13
"release" : False ,
14
14
"groupId" : "org.graalvm.graalpython" ,
15
15
"url" : "http://www.graalvm.org/" ,
You can’t perform that action at this time.
0 commit comments