From fa5b11ad0d2d8cb789e2210aa50c751f67692b99 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 31 Mar 2023 16:56:22 -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