Skip to content

Commit

Permalink
Merge pull request #189 from TerosTechnology/update_default_device
Browse files Browse the repository at this point in the history
fix name errors
  • Loading branch information
qarlosalberto authored Jul 1, 2021
2 parents 52e5772 + 8b6a903 commit 65b652c
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 65b652c

Please sign in to comment.