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-06-22 17:41:12 +0200
commit055b8f37b2259b538dc8abadf0bb992ba35b5478 (patch)
tree529c2e5a47acd0619d70d1919f82e8a36f8f7a33
parent2215c50a9b9d5052bcc79f983f2492fe7deab6dd (diff)
downloadqutebrowser-055b8f37b2259b538dc8abadf0bb992ba35b5478.tar.gz
qutebrowser-055b8f37b2259b538dc8abadf0bb992ba35b5478.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 ade338ecf..6337f2da3 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -177,6 +177,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)