Files
regex-tools/scripts/install-php-engine.mjs

17 lines
600 B
JavaScript

import path from "node:path";
import { fileURLToPath } from "node:url";
import { installPhpPack } from "./php-engine-pack.mjs";
const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
const arguments_ = process.argv.slice(2);
if (arguments_.length > 1) {
throw new Error(
"Usage: node scripts/install-php-engine.mjs [.engine-build/php]",
);
}
const source = path.resolve(root, arguments_[0] ?? ".engine-build/php");
const result = await installPhpPack(source, root);
console.log(
`Installed verified ${result.metadata.engineVersion} assets at ${result.output}.`,
);