You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.
# Remove Election 9 deprecation warnings from error output
suppress_deprecation_warnings() {
while read -r line; do
echo "$line" | grep -v "allowRendererProcessReuse is deprecated\|is deprecated due to security and usability issues\|is deprecated and will be removed\|is deprecated and will be changing\|DeprecationWarning: Passing functions"
done
}
# Remove auto-update message from standard output
# Waiting for https://github.com/jgraph/drawio-desktop/issues/166
suppress_autoupdate_warnings() {
while read -r line; do
echo "$line" | grep -v "Checking for update\|Generated new staging user ID\|Found version\|@update-available@"
done
}
# shellcheck disable=SC2068
if [ "${DRAWIO_CLI_SUPPRESS_WARNINGS:-false}" = true ]; then