Skip to content

Commit

Permalink
Update edalize.ts
Browse files Browse the repository at this point in the history
Remove await this.check_requisites()
  • Loading branch information
qarlosalberto authored May 5, 2022
1 parent 9194790 commit bc47b69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/project_manager/tools/edalize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ export class Edalize extends tool_base.Tool_base {

async run_simulation(edam, testname, gui) {
let check = await this.check_requisites();
if (check === false) {
return [];
}
//if (check === false) {
//return [];
//}

let normalized_edam = this.normalize_edam(edam);
let simulator_name = this.get_simulator_from_edam(normalized_edam);
Expand Down Expand Up @@ -352,4 +352,4 @@ export class Edalize extends tool_base.Tool_base {
}
return results;
}
}
}

0 comments on commit bc47b69

Please sign in to comment.