Change order of parameters, to work on other os

This commit is contained in:
Miodrag Milanovic 2019-09-27 11:31:55 +02:00
parent 143f82def2
commit 7f0eec8270
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ for x in *.ys; do
echo "all:: run-$x" echo "all:: run-$x"
echo "run-$x:" echo "run-$x:"
echo " @echo 'Running $x..'" echo " @echo 'Running $x..'"
echo " @../../yosys -ql ${x%.ys}.log $x -w 'Yosys has only limited support for tri-state logic at the moment.'" echo " @../../yosys -ql ${x%.ys}.log -w 'Yosys has only limited support for tri-state logic at the moment.' $x"
done done
for s in *.sh; do for s in *.sh; do
if [ "$s" != "run-test.sh" ]; then if [ "$s" != "run-test.sh" ]; then