You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During an installation attempt on Raspberry Pi 4B with Raspbian 12 I'm getting the following error:
$ curl -fsSL https://terminus.sh | bash -
...
2024-08-06 08:01:38.026062993 +0100 [INFO] Precheck and Installing dependencies ...
2024-08-06 08:01:38.123529580 +0100 [FATAL] unsupported os version 'Raspberry Pi OS'
2024-08-06 08:01:38.127421071 +0100 [FATAL] command error occurs, exit with '1' directly
After inspecting install_cmd.sh I found out that is_raspbian() calls lsb_release with -d (for 'description') flag instead of -r (for 'release'), which is then compared to '11' and '12'.
During an installation attempt on Raspberry Pi 4B with Raspbian 12 I'm getting the following error:
After inspecting
install_cmd.sh
I found out thatis_raspbian()
callslsb_release
with-d
(for 'description') flag instead of-r
(for 'release'), which is then compared to '11' and '12'.Code in question:
The text was updated successfully, but these errors were encountered: