You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build-all.php 182B

12345678910111213
  1. <?php
  2. $platforms = [
  3. "chrome",
  4. "firefox"
  5. ];
  6. $root = preg_replace('/\/[^\/]+$/', '', dirname(__FILE__));
  7. foreach ($platforms as $platform) {
  8. `{$root}/build.sh {$platform}`;
  9. }
  10. ?>