Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vscode/src/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export class SimplicityHLCompiler {

// Add optional witness file
if (options.witnessFile) {
args.push("-w");
args.push(options.witnessFile);
}
// Add optional flags
Expand Down
1 change: 1 addition & 0 deletions vscode/src/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export class SimplicityHLTaskProvider implements vscode.TaskProvider {
case "compile-with-witness":
taskName = "Compile with Witness";
args = [definition.file || "${file}"];
args.push("-w");
if (definition.witnessFile) {
args.push(definition.witnessFile);
} else {
Expand Down
Loading