feat: without deps
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-11-28 00:51:29 +01:00
parent 62f66452c2
commit 5908cd9526
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -35,13 +35,13 @@ impl DaggerMiddleware for AptCaCertificates {
}
pub trait AptCaCertificatesExt {
fn with_apt_ca_certificates(&mut self, deps: &[&str]) -> &mut Self {
fn with_apt_ca_certificates(&mut self) -> &mut Self {
self
}
}
impl AptCaCertificatesExt for RustService {
fn with_apt_ca_certificates(&mut self, deps: &[&str]) -> &mut Self {
fn with_apt_ca_certificates(&mut self) -> &mut Self {
self.with_stage(super::RustServiceStage::BeforeDeps(Arc::new(
AptCaCertificates::new(),
)))