Skip to content

Commit 6446b7e

Browse files
committed
Raise up needed os release
1 parent 3cee11d commit 6446b7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rtkbase_update.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,21 @@ check_before_update() {
4545

4646
case $ID in
4747
debian)
48-
if (( $(echo "$VERSION_ID < 10" | bc -l) ))
48+
if (( $(echo "$VERSION_ID < 11" | bc -l) ))
4949
then
5050
printf "${TOO_OLD}" >/dev/stderr
5151
exit 1
5252
fi
5353
;;
5454
raspbian)
55-
if (( $(echo "$VERSION_ID < 10" | bc -l) ))
55+
if (( $(echo "$VERSION_ID < 11" | bc -l) ))
5656
then
5757
printf "${TOO_OLD}" >/dev/stderr
5858
exit 1
5959
fi
6060
;;
6161
ubuntu)
62-
if (( $(echo "$VERSION_ID < 20.04" | bc -l) ))
62+
if (( $(echo "$VERSION_ID < 22.04" | bc -l) ))
6363
then
6464
printf "${TOO_OLD}" >/dev/stderr
6565
exit 1

0 commit comments

Comments
 (0)