build/openfpgaloader: report command line on error
Helps explain failures
This commit is contained in:
parent
f73fbee309
commit
4dae3a9f4d
|
@ -71,4 +71,8 @@ class OpenFPGALoader(GenericProgrammer):
|
|||
cmd.append(str(value))
|
||||
|
||||
# Execute Command.
|
||||
self.call(cmd)
|
||||
try:
|
||||
self.call(cmd)
|
||||
except OSError as e:
|
||||
print(' '.join(cmd))
|
||||
raise
|
||||
|
|
Loading…
Reference in New Issue