Skip to content

Commit aace5cc

Browse files
wilcorreaCopilot
andcommitted
fix(copilot-sandbox): suppress update-ca-certificates output
Redirect stdout/stderr to /dev/null to avoid noisy output when installing corporate CA certificates. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 7bf8071 commit aace5cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

copilot-sandbox/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ success() { printf "${GREEN}[OK]${NC} %s\n" "$*" >&2; }
1515

1616
# Configure corporate CA certificate if mounted
1717
if [ -f /usr/local/share/ca-certificates/extra-ca.crt ]; then
18-
update-ca-certificates
18+
update-ca-certificates > /dev/null 2>&1
1919
fi
2020

2121
HOST_UID="${HOST_UID:-0}"

0 commit comments

Comments
 (0)