From 6b7e71d3db6f814f98fdf832a96adab226b60551 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 31 Mar 2023 16:55:41 -0700 Subject: [PATCH] update bin wrapper to pass cli options --- root/usr/local/bin/wrapped-chromium | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/root/usr/local/bin/wrapped-chromium b/root/usr/local/bin/wrapped-chromium index 3a7e0c66..182b8669 100755 --- a/root/usr/local/bin/wrapped-chromium +++ b/root/usr/local/bin/wrapped-chromium @@ -4,7 +4,7 @@ BIN=/usr/bin/chromium # 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