mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-04 16:44:08 +00:00
yosys-config: Propagate exit code for help command
This commit is contained in:
parent
314842d2a0
commit
58a515d57f
|
@ -37,11 +37,11 @@ help() {
|
|||
echo " $0 --datdir/simlib.v"
|
||||
echo ""
|
||||
} >&2
|
||||
exit 1
|
||||
exit $1
|
||||
}
|
||||
|
||||
if [ $# -eq 0 ]; then
|
||||
help
|
||||
help 1
|
||||
fi
|
||||
|
||||
if [ "$1" = "--build" ]; then
|
||||
|
@ -83,7 +83,7 @@ for opt; do
|
|||
tokens=( "${tokens[@]}" '@DATDIR@'"${opt#${prefix}datdir}" ) ;;
|
||||
--help|-\?|-h)
|
||||
if [ ${#tokens[@]} -eq 0 ]; then
|
||||
help
|
||||
help 0
|
||||
else
|
||||
tokens=( "${tokens[@]}" "$opt" )
|
||||
fi ;;
|
||||
|
|
Loading…
Reference in a new issue