Skip to content

Commit

Permalink
Use array instead of string, also pass in args to python3 instead of …
Browse files Browse the repository at this point in the history
…entire command
  • Loading branch information
Pocketkid2 authored and olofk committed Aug 27, 2022
1 parent 2ced241 commit 24d0030
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions edalize/tools/vpr.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,15 @@ def configure(self, edam):
depends = self.name + ".net"
targets = gen_constr_list[0]
commands.add(
gen_constr_list[2],
["python3", gen_constr_list[2]],
[targets],
[depends],
)

depends = gen_constr_list[0]
targets = gen_constr_list[1]
commands.add(
gen_constr_list[3],
["python3", gen_constr_list[3]],
[targets],
[depends],
)
Expand Down

0 comments on commit 24d0030

Please sign in to comment.