Skip to content

Commit 30d47f0

Browse files
committed
[sysutil.sh] Fix Trixie OS name
1 parent 583b0dc commit 30d47f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

www/util/sysutil.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ if [[ $1 = "get-osinfo" ]]; then
209209
RPIOS_MVER=$(cat /etc/debian_version | cut -d "." -f 1)
210210
if [[ "$RPIOS_MVER" == "11" ]]; then RPIOS_NAME="Bullseye"; fi
211211
if [[ "$RPIOS_MVER" == "12" ]]; then RPIOS_NAME="Bookworm"; fi
212-
if [[ "$RPIOS_MVER" == "13" ]]; then RPIOS_NAME="Trxie"; fi
212+
if [[ "$RPIOS_MVER" == "13" ]]; then RPIOS_NAME="Trixie"; fi
213213
if [[ "$RPIOS_MVER" == "14" ]]; then RPIOS_NAME="Forky"; fi
214214
RPIOS_ARCH=$(dpkg -l | grep nano | awk '{print $4}')
215215
if [ $RPIOS_ARCH = "arm64" ]; then RPIOS_BITS="64-bit"; else RPIOS_BITS="32-bit"; fi

0 commit comments

Comments
 (0)