From 764736b223f25de2ada53dcd8aeff3263a80071c Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 14 Feb 2024 18:12:33 -0600 Subject: [PATCH] update dev builds message (#9853) --- frigate/app.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/frigate/app.py b/frigate/app.py index f288f3a2d..080261d2a 100644 --- a/frigate/app.py +++ b/frigate/app.py @@ -650,7 +650,19 @@ class FrigateApp: if not os.environ.get("I_PROMISE_I_WONT_MAKE_AN_ISSUE_ON_GITHUB"): print( - "Frigate 0.14 UNSTABLE - not for public use at this time. Please use Frigate stable" + "**********************************************************************************" + ) + print( + "**********************************************************************************" + ) + print("Frigate 0.14 UNSTABLE") + print("This build is not for public use. Please use Frigate stable.") + print("Unstable/experimental builds are not enabled, Frigate is exiting.") + print( + "**********************************************************************************" + ) + print( + "**********************************************************************************" ) sys.exit(1)