mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-28 07:55:50 +00:00
13 lines
165 B
Bash
13 lines
165 B
Bash
#!/bin/bash
|
|
|
|
python3 $SBY_MAIN -f fifo.sby
|
|
|
|
if [[ $? -ne 0 ]] ; then
|
|
exit 1
|
|
fi
|
|
|
|
python3 $SBY_MAIN -f fifo.sby nofullskip
|
|
|
|
if [[ $? -ne 2 ]] ; then
|
|
exit 1
|
|
fi
|