Skip to content

Commit

Permalink
fix name errors
Browse files Browse the repository at this point in the history
  • Loading branch information
smgl9 committed Jul 1, 2021
1 parent ea14a36 commit 8b6a903
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/project_manager/tools/edalize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ export class Edalize extends tool_base.Tool_base{

quartus_builds( project_name, top_level){
const homedir = require('os').homedir();
let synt_file = `${top_level}.map.summary`;
let imp_file = `${top_level}.fit.summary`;
let time_file = `${top_level}.sta.summary`;
let synt_file = `${project_name}.map.summary`;
let imp_file = `${project_name}.fit.summary`;
let time_file = `${project_name}.sta.summary`;
let synt_path = path_lib.join(homedir, '.teroshdl', 'build', synt_file);
let imp_path = path_lib.join(homedir, '.teroshdl', 'build', imp_file);
let time_path = path_lib.join(homedir, '.teroshdl', 'build', time_file);
Expand Down

0 comments on commit 8b6a903

Please sign in to comment.