mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
If python3 fails, make it clear that this isn't fatal
This commit is contained in:
@ -21,7 +21,7 @@
|
|||||||
my $py = $0;
|
my $py = $0;
|
||||||
$py =~ s/\.pl$/.py/ or die "Unable to determine the name of the Python script";
|
$py =~ s/\.pl$/.py/ or die "Unable to determine the name of the Python script";
|
||||||
exec 'python3', $py, @ARGV;
|
exec 'python3', $py, @ARGV;
|
||||||
print STDERR "$0: python3: $!\n";
|
print STDERR "$0: python3: $!. Trying python instead.\n";
|
||||||
exec 'python', $py, @ARGV;
|
exec 'python', $py, @ARGV;
|
||||||
print STDERR "$0: python: $!\n";
|
print STDERR "$0: python: $!\n";
|
||||||
exit 127;
|
exit 127;
|
||||||
|
Reference in New Issue
Block a user