17 lines
647 B
JavaScript
17 lines
647 B
JavaScript
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import { installPythonPack } from "./python-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-python-engine.mjs [.engine-build/python]",
|
|
);
|
|
}
|
|
const source = path.resolve(root, arguments_[0] ?? ".engine-build/python");
|
|
const result = await installPythonPack(source, root);
|
|
console.log(
|
|
`Installed verified ${result.metadata.runtime} / ${result.metadata.engineVersion} assets at ${result.output}.`,
|
|
);
|