f4pga/wrappers/sh/fasm: use Path instead of bash's mv
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
This commit is contained in:
parent
315ffd2df2
commit
20171e4d1e
|
@ -118,9 +118,8 @@ if [ -f $FASM_EXTRA ]; then
|
||||||
cat ${{TOP}}.fasm $FASM_EXTRA > tmp.fasm
|
cat ${{TOP}}.fasm $FASM_EXTRA > tmp.fasm
|
||||||
mv tmp.fasm ${{TOP}}.fasm
|
mv tmp.fasm ${{TOP}}.fasm
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mv vpr_stdout.log fasm.log
|
|
||||||
""")
|
""")
|
||||||
|
Path('vpr_stdout.log').rename('fasm.log')
|
||||||
|
|
||||||
|
|
||||||
def write_xml_rr_graph():
|
def write_xml_rr_graph():
|
||||||
|
|
Loading…
Reference in New Issue