feat: ssh is always required for with src
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2023-08-11 20:01:43 +02:00
parent 1d2cba49aa
commit 0a39e729bc
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394
2 changed files with 0 additions and 4 deletions

View File

@ -39,9 +39,6 @@ pub mod models {
/// Which server to use, see inner field for more docs
pub server: SrcServer,
/// Whether to include an ssh socket, if not set will default to the token set in server and http/https depending on the server
pub use_ssh_socket: bool,
}
#[derive(Clone, Debug)]

View File

@ -12,7 +12,6 @@ pub async fn main() -> eyre::Result<()> {
.expect("CUDDLE_PLEASE_TOKEN to be present"),
},
log_level: Some(dagger_cuddle_please::models::LogLevel::Debug),
use_ssh_socket: true,
})
.await?;