Skip to content

Commit 671f23b

Browse files
committed
Fix Quartus programming file extension
1 parent 1dacd42 commit 671f23b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyfpga/quartus.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ def _configure(self):
2020
self.conf['make_cmd'] = f'quartus_sh --script {tool}.tcl'
2121
self.conf['make_ext'] = 'tcl'
2222
self.conf['prog_bit'] = ['sof', 'pof']
23-
self.conf['prog_cmd'] = f'bash {tool}-prog.tcl'
24-
self.conf['prog_ext'] = 'tcl'
23+
self.conf['prog_cmd'] = f'bash {tool}-prog.sh'
24+
self.conf['prog_ext'] = 'sh'
2525

2626
def _make_custom(self):
2727
if 'part' not in self.data:

0 commit comments

Comments
 (0)