From 61868f281e703b318ef59669fa14e4e6045131e0 Mon Sep 17 00:00:00 2001 From: Denton Gentry Date: Sat, 16 Apr 2022 15:58:32 -0700 Subject: [PATCH] scripts/installer: call emerge with --ask=n Fixes https://github.com/tailscale/tailscale/issues/4354 Signed-off-by: Denton Gentry --- scripts/installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer.sh b/scripts/installer.sh index ad62b43f0..f763f72fd 100755 --- a/scripts/installer.sh +++ b/scripts/installer.sh @@ -485,7 +485,7 @@ main() { ;; emerge) set -x - $SUDO emerge net-vpn/tailscale + $SUDO emerge --ask=n net-vpn/tailscale set +x ;; appstore)