summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-06-21 19:05:18 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-08-23 18:31:42 +0200
commit7f4f0726291e2af7f57098736280fe3073abbc2c (patch)
treeaeb0a8c4969b359ec799885dba0c788c50d8ca64
parent96dfd2bbf979a4ba13b75f7cb0118fa5512a71fd (diff)
downloadqutebrowser-7f4f0726291e2af7f57098736280fe3073abbc2c.tar.gz
qutebrowser-7f4f0726291e2af7f57098736280fe3073abbc2c.zip
build-release: Ignore sandboxing disabled message
See #7278
-rwxr-xr-xscripts/dev/build_release.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index 4eb9ac580..189570f8a 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -183,6 +183,9 @@ def smoke_test(executable: pathlib.Path, debug: bool) -> None:
r'[0-9:]* WARNING: Qt WebEngine resources not found at .*',
(r'[0-9:]* WARNING: Installed Qt WebEngine locales directory not found at '
r'location /qtwebengine_locales\. Trying application directory\.\.\.'),
+
+ # https://github.com/pyinstaller/pyinstaller/pull/6903
+ r"[0-9:]* INFO: Sandboxing disabled by user\.",
]
proc = _smoke_test_run(executable)