mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
honor --min-devs flag
This commit is contained in:
parent
b097e0825e
commit
4ea8569abc
1 changed files with 3 additions and 0 deletions
|
@ -79,6 +79,9 @@ function pick_ndevs() {
|
||||||
elif [ $RNUM -gt 75 -a $MAXDEVS -ge 3 ]; then
|
elif [ $RNUM -gt 75 -a $MAXDEVS -ge 3 ]; then
|
||||||
NDEVS=3
|
NDEVS=3
|
||||||
fi
|
fi
|
||||||
|
if [ -n "$MINDEVS" -a "$NDEVS" -lt "$MINDEVS" ]; then
|
||||||
|
NDEVS=$MINDEVS
|
||||||
|
fi
|
||||||
echo $NDEVS
|
echo $NDEVS
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue