Skip to content

Commit dd39398

Browse files
fix: add embedded requirement in macos signing request for qchat (#1745)
1 parent 87f59a5 commit dd39398

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

build-scripts/manifest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ def app_manifest():
6464
path="Contents/MacOS/qterm",
6565
identifier="com.amazon.qterm",
6666
),
67+
EmbeddedRequirement(
68+
path="Contents/MacOS/qchat",
69+
identifier="com.amazon.qchat",
70+
),
6771
],
6872
)
6973

crates/fig_ipc/src/unix_socket.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ mod tests {
157157
.unwrap();
158158
}
159159

160+
// Wait some time for the socket to start listening.
161+
tokio::time::sleep(std::time::Duration::from_millis(5)).await;
162+
160163
let _stream = socket_connect(&socket_path).await.expect("Failed to validate socket");
161164

162165
socket_thread.abort();

0 commit comments

Comments
 (0)