mirror of
https://github.com/YosysHQ/sby.git
synced 2025-08-19 03:12:18 +00:00
9 lines
190 B
Bash
9 lines
190 B
Bash
#!/bin/bash
|
|
set -e
|
|
if [[ $TASK == link ]]; then
|
|
flags="--setup --link"
|
|
else
|
|
flags="--setup"
|
|
fi
|
|
python3 $SBY_MAIN -f $SBY_FILE $TASK $flags
|
|
python3 ${SBY_FILE%.sby}.py $WORKDIR $TASK
|