Skip to content

Commit

Permalink
fix compile script output dir bug (#1702)
Browse files Browse the repository at this point in the history
`aztec-cli compile` was not working with specifying an `outdir`. It
wasn't respecting the path provided
  • Loading branch information
rahul-kothari authored Aug 21, 2023
1 parent d27a026 commit 53e618a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/noir-compiler/src/cli/contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function compileContract(program: Command, name = 'contract', log: LogFn
return program
.command(name)
.argument('<project-path>', 'Path to the noir project to compile')
.option('-o, --outdir', 'Output folder for the binary artifacts, relative to the project path', 'target')
.option('-o, --outdir <path>', 'Output folder for the binary artifacts, relative to the project path', 'target')
.option('-ts, --typescript <path>', 'Optional output folder for generating typescript wrappers', undefined)
.option('-i, --interface <path>', 'Optional output folder for generating noir contract interface', undefined)
.description('Compiles the contracts in the target project')
Expand Down

0 comments on commit 53e618a

Please sign in to comment.