From c789188a62fba7fc3f5cac41a16dacbfcfe83dcd Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 31 Mar 2023 16:54:54 -0700 Subject: [PATCH] update bin wrapper to pass cli options --- root/usr/bin/chromium | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/root/usr/bin/chromium b/root/usr/bin/chromium index a62c662e..5887b478 100755 --- a/root/usr/bin/chromium +++ b/root/usr/bin/chromium @@ -4,7 +4,7 @@ BIN=/usr/bin/chromium-real # Run normally on privved containers or modified un non priv if grep -q 'Seccomp: 0' /proc/1/status; then - ${BIN} --password-store=basic + ${BIN} --password-store=basic "$@" else - ${BIN} --password-store=basic --no-sandbox --test-type + ${BIN} --password-store=basic --no-sandbox --test-type "$@" fi