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 87f59a5 commit dd39398Copy full SHA for dd39398
build-scripts/manifest.py
@@ -64,6 +64,10 @@ def app_manifest():
64
path="Contents/MacOS/qterm",
65
identifier="com.amazon.qterm",
66
),
67
+ EmbeddedRequirement(
68
+ path="Contents/MacOS/qchat",
69
+ identifier="com.amazon.qchat",
70
+ ),
71
],
72
)
73
crates/fig_ipc/src/unix_socket.rs
@@ -157,6 +157,9 @@ mod tests {
157
.unwrap();
158
}
159
160
+ // Wait some time for the socket to start listening.
161
+ tokio::time::sleep(std::time::Duration::from_millis(5)).await;
162
+
163
let _stream = socket_connect(&socket_path).await.expect("Failed to validate socket");
164
165
socket_thread.abort();
0 commit comments