From 415cf8e98661ef7f5cff43cb23f4e0d7dc0ad411 Mon Sep 17 00:00:00 2001 From: Collin Diekvoss Date: Mon, 18 Apr 2022 19:37:20 -0500 Subject: [PATCH] Correct codename of raspberry pi os release --- octoprint_deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/octoprint_deploy.sh b/octoprint_deploy.sh index 5df5284..d35e010 100755 --- a/octoprint_deploy.sh +++ b/octoprint_deploy.sh @@ -457,7 +457,7 @@ prepare () { echo 'This only needs to be run once to prepare your system to use octoprint_deploy.' echo 'Run this setup and then connect to OctoPrint through your browser to setup your admin user.' PS3='Installation type: ' - options=("OctoPi" "Ubuntu 18-20" "Ubuntu 21.X" "Mint 20.3" "Fedora 35+" "Raspberry Pi OS Buster" "Quit") + options=("OctoPi" "Ubuntu 18-20" "Ubuntu 21.X" "Mint 20.3" "Fedora 35+" "Raspberry Pi OS Bullseye" "Quit") select opt in "${options[@]}" do case $opt in @@ -481,7 +481,7 @@ prepare () { INSTALL=5 break ;; - "Raspberry Pi OS Buster") + "Raspberry Pi OS Bullseye") INSTALL=6 break ;;