Browse Source

One and only one file compilation at a time

feature/witness_bin
Jordi Baylina 5 years ago
parent
commit
70c88be334
No known key found for this signature in database GPG Key ID: 7480C80C1BE43112
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      cli.js

+ 9
- 0
cli.js

@ -41,11 +41,20 @@ const argv = require("yargs")
repo directory at https://github.com/iden3/circom `)
.argv;
if (argv._.length == 0) {
console.log("File to compile not specified");
process.exit(1);
} else if (argv._.length > 1) {
console.log("Only one circuit at a time is permited");
process.exit(1);
}
const fullFileName = path.resolve(process.cwd(), argv._[0]);
const outName = argv.output ? argv.output : "circuit.json";
compiler(fullFileName).then( (cir) => {
fs.writeFileSync(outName, JSON.stringify(cir, null, 1), "utf8");
process.exit(0);
}, (err) => {
console.log(err);
console.error(`ERROR at ${err.errFile}:${err.pos.first_line},${err.pos.first_column}-${err.pos.last_line},${err.pos.last_column} ${err.errStr}`);

Loading…
Cancel
Save