When running on Windows, Perl $^X returns slic3r.exe or slic3r-console.exe
Do some magic to get the perl interpreter path.
This commit is contained in:
parent
bd1d70d8d3
commit
645cc65d2b
@ -101,7 +101,12 @@ sub export_gcode {
|
|||||||
die "The configured post-processing script is not executable: check permissions. ($script)\n";
|
die "The configured post-processing script is not executable: check permissions. ($script)\n";
|
||||||
}
|
}
|
||||||
if ($^O eq 'MSWin32' && $script =~ /\.[pP][lL]/) {
|
if ($^O eq 'MSWin32' && $script =~ /\.[pP][lL]/) {
|
||||||
system($^X, $script, $output_file);
|
# The current process (^X) may be slic3r.exe or slic3r-console.exe.
|
||||||
|
# Replace it with the current perl interpreter.
|
||||||
|
my($filename, $directories, $suffix) = fileparse($^X);
|
||||||
|
$filename =~ s/^slic3r.*$/perl5\.24\.0\.exe/;
|
||||||
|
my $interpreter = $directories . $filename;
|
||||||
|
system($interpreter, $script, $output_file);
|
||||||
} else {
|
} else {
|
||||||
system($script, $output_file);
|
system($script, $output_file);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user