Fixed bugs in build scripts
This commit is contained in:
parent
f9cad74bd8
commit
b5c7f4d7cb
@ -15,7 +15,7 @@ if ($argc < 2) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
## Determine path to repository root.
|
## Determine path to repository root.
|
||||||
$root = preg_replace('/\/[^\/]+$/', '', dirname(__FILE__));
|
$root = dirname(__FILE__);
|
||||||
|
|
||||||
## Determine what platforms are available.
|
## Determine what platforms are available.
|
||||||
$platforms = array_filter(scandir("{$root}/src/platform/"), function ($str) {
|
$platforms = array_filter(scandir("{$root}/src/platform/"), function ($str) {
|
||||||
|
|||||||
@ -2,14 +2,18 @@
|
|||||||
|
|
||||||
$root = preg_replace('/\/[^\/]+$/', '', dirname(__FILE__));
|
$root = preg_replace('/\/[^\/]+$/', '', dirname(__FILE__));
|
||||||
|
|
||||||
if ($argv[1] == "-b")
|
if ($argv[1] == "-b") {
|
||||||
|
$argv[1] = "all";
|
||||||
include_once("{$root}/build.php");
|
include_once("{$root}/build.php");
|
||||||
|
}
|
||||||
|
|
||||||
$platforms = array_filter(scandir("{$root}/src/platform/"), function ($str) {
|
$platforms = array_filter(scandir("{$root}/src/platform/"), function ($str) {
|
||||||
return strncmp($str, ".", 1);
|
return strncmp($str, ".", 1);
|
||||||
});
|
});
|
||||||
|
|
||||||
foreach ($platforms as $platform) {
|
foreach ($platforms as $platform) {
|
||||||
|
echo "Packaging for: {$platform}\n";
|
||||||
|
|
||||||
$manifest = JSON_decode(file_get_contents("{$root}/build/{$platform}/manifest.json"), true);
|
$manifest = JSON_decode(file_get_contents("{$root}/build/{$platform}/manifest.json"), true);
|
||||||
$version = $manifest["version"];
|
$version = $manifest["version"];
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user