mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-28 00:21:48 +03:00
Report an error if switching to Python fails
This commit is contained in:
committed by
Darryl Green
parent
5d650c86b4
commit
1854ec45af
@ -2,4 +2,6 @@
|
|||||||
# Backward compatibility redirection
|
# Backward compatibility redirection
|
||||||
my $py = $0;
|
my $py = $0;
|
||||||
$py =~ s/\.pl$/.py/;
|
$py =~ s/\.pl$/.py/;
|
||||||
exec 'python3', $py, @ARGV
|
exec 'python3', $py, @ARGV;
|
||||||
|
print STDERR "$0: python3: $!\n";
|
||||||
|
exit 127;
|
||||||
|
Reference in New Issue
Block a user