From f1482b8b12956330be44a194fb93fb91a4f4e2bf Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Fri, 17 Oct 2025 14:32:35 +0200 Subject: [PATCH] Force linux for test --- apps/desktop/desktop_native/ssh_agent/examples/integration.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/desktop/desktop_native/ssh_agent/examples/integration.rs b/apps/desktop/desktop_native/ssh_agent/examples/integration.rs index 4c679cfccbd..9d9f4d70296 100644 --- a/apps/desktop/desktop_native/ssh_agent/examples/integration.rs +++ b/apps/desktop/desktop_native/ssh_agent/examples/integration.rs @@ -1,3 +1,5 @@ +#![cfg(target_os = "linux")] + use std::{fs, process::Command, sync::Arc}; use ssh_agent::{agent::{ui_requester::{UiRequestMessage, UiRequester}, BitwardenDesktopAgent}, memory::UnlockedSshItem, protocol::types::{KeyPair, PrivateKey}, transport::unix_listener_stream::UnixListenerStream};