From 5297e946c54bc515e31e839fc505ee90f980c3c4 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 16 Aug 2023 21:31:15 +0200 Subject: [PATCH] Update install-octoprint.ps1 --- Scripts/install-octoprint.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scripts/install-octoprint.ps1 b/Scripts/install-octoprint.ps1 index aa233cf9..b35c598e 100644 --- a/Scripts/install-octoprint.ps1 +++ b/Scripts/install-octoprint.ps1 @@ -1,11 +1,11 @@ try { - "⏳ Installing Octoprint (latest stable version)..." + "⏳ Installing OctoPrint (snap 'octoprint-sdev', latest stable version)..." - & sudo snap install octoprint-sdev - if ($lastExitCode -ne "0") { throw "Can't install Octoprint, is it already installed?" } + & sudo snap install octoprint-sdev --beta + if ($lastExitCode -ne "0") { throw "Can't install OctoPrint, is it already installed?" } - "NOTE: Octoprint's web interface can be reached at http://:5000" + "HINT: Access Octoprint's web login at: http://:5000" exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"