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))
|
cmd.append(str(value))
|
||||||
|
|
||||||
# Execute Command.
|
# Execute Command.
|
||||||
|
try:
|
||||||
self.call(cmd)
|
self.call(cmd)
|
||||||
|
except OSError as e:
|
||||||
|
print(' '.join(cmd))
|
||||||
|
raise
|
||||||
|
|
Loading…
Reference in New Issue