We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 091701f commit 93e2155Copy full SHA for 93e2155
src/briefcase/platforms/macOS/__init__.py
@@ -400,7 +400,9 @@ def run_gui_app(
400
# as the process will generate lots of system-level messages.
401
# We can't filter on *just* the senderImagePath, because other
402
# apps will generate log messages that would be caught by the filter.
403
- sender = os.fsdecode(self.binary_path(app) / "Contents/MacOS" / app.formal_name)
+ sender = os.fsdecode(
404
+ self.binary_path(app) / "Contents/MacOS" / app.formal_name
405
+ ).replace('"', '\\"')
406
log_popen = self.tools.subprocess.Popen(
407
[
408
"log",
0 commit comments