From 808776d2e1f611baa90f906cca87d797f00c29f3 Mon Sep 17 00:00:00 2001 From: Nicholas Romeo Date: Mon, 23 Oct 2023 14:43:27 +0200 Subject: [PATCH] fix: Prevent Angular CLI prompts from interrupting app launch Angular CLI could prompt the user for input about autocomplete or analytics in the middle of the make process, causing a failure to properly launch the app. Adding an environmental variable to suppress TTY avoids this. --- frontend/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/Makefile b/frontend/Makefile index 8537a50da..4e5d43195 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -1,6 +1,8 @@ # SPDX-FileCopyrightText: Copyright DB Netz AG and the capella-collab-manager contributors # SPDX-License-Identifier: Apache-2.0 +export NG_FORCE_TTY=false + dev: ng serve --open