We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 895c962 commit 7282f3eCopy full SHA for 7282f3e
graalpython/com.oracle.graal.python.shell/src/com/oracle/graal/python/shell/GraalPythonMain.java
@@ -358,7 +358,10 @@ private static String getLauncherExecName() {
358
if (ProcessProperties.getArgumentVectorBlockSize() > 0) {
359
binPathName = ProcessProperties.getArgumentVectorProgramName();
360
}
361
- return binPathName != null ? binPathName : ProcessProperties.getExecutableName();
+ if (binPathName != null) {
362
+ return Paths.get(binPathName).toAbsolutePath().toString();
363
+ }
364
+ return ProcessProperties.getExecutableName();
365
366
return GraalPythonMain.BASH_LAUNCHER_EXEC_NAME;
367
0 commit comments