Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/2071.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Apps whose formal name includes a `"` are now correctly handled on macOS.
4 changes: 3 additions & 1 deletion src/briefcase/platforms/macOS/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,9 @@ def run_gui_app(
# as the process will generate lots of system-level messages.
# We can't filter on *just* the senderImagePath, because other
# apps will generate log messages that would be caught by the filter.
sender = os.fsdecode(self.binary_path(app) / "Contents/MacOS" / app.formal_name)
sender = os.fsdecode(
self.binary_path(app) / "Contents/MacOS" / app.formal_name
).replace('"', '\\"')
log_popen = self.tools.subprocess.Popen(
[
"log",
Expand Down