Skip to content

Commit 24d0030

Browse files
Pocketkid2olofk
authored andcommitted
Use array instead of string, also pass in args to python3 instead of entire command
1 parent 2ced241 commit 24d0030

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

edalize/tools/vpr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ def configure(self, edam):
118118
depends = self.name + ".net"
119119
targets = gen_constr_list[0]
120120
commands.add(
121-
gen_constr_list[2],
121+
["python3", gen_constr_list[2]],
122122
[targets],
123123
[depends],
124124
)
125125

126126
depends = gen_constr_list[0]
127127
targets = gen_constr_list[1]
128128
commands.add(
129-
gen_constr_list[3],
129+
["python3", gen_constr_list[3]],
130130
[targets],
131131
[depends],
132132
)

0 commit comments

Comments
 (0)