mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 14:40:17 +00:00
35 lines
629 B
JavaScript
35 lines
629 B
JavaScript
#!/usr/bin/env node
|
|
|
|
"use strict";
|
|
|
|
const { exec } = require("child_process");
|
|
const path = require("path");
|
|
const fs = require('fs');
|
|
|
|
let importArgs = []
|
|
|
|
const nm = path.join("./", "node_modules")
|
|
if (fs.existsSync(nm) && fs.lstatSync(nm).isDirectory()) {
|
|
importArgs = ["-m", "node_modules"]
|
|
}
|
|
|
|
const args = [
|
|
"java",
|
|
"-jar",
|
|
path.join(__dirname, "aqua-cli.jar"),
|
|
...importArgs,
|
|
...process.argv.slice(2),
|
|
];
|
|
|
|
const argsString = args.join(" ");
|
|
|
|
console.log(argsString);
|
|
exec(argsString, (err, stdout, stderr) => {
|
|
console.error(stderr);
|
|
console.log(stdout);
|
|
|
|
if (err) {
|
|
process.exit(err.code);
|
|
}
|
|
});
|