build-web-examples: It's usually /bin/bash on Linux, not /usr/bin/bash.

This commit is contained in:
Ryan C. Gordon 2024-07-22 22:42:32 -04:00
parent 5339b4458d
commit 70348d77e1
No known key found for this signature in database
GPG key ID: FA148B892AB48044

View file

@ -37,7 +37,7 @@ sub usage {
sub do_system {
my $cmd = shift;
$cmd = "exec /usr/bin/bash -c \"$cmd\"";
$cmd = "exec /bin/bash -c \"$cmd\"";
print("$cmd\n");
return system($cmd);
}