Explorar el Código

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

Ryan C. Gordon hace 1 año
padre
commit
70348d77e1
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      build-scripts/build-web-examples.pl

+ 1 - 1
build-scripts/build-web-examples.pl

@@ -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);
 }