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