feat: run before base
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-12-30 22:50:18 +01:00
parent 3ff9cff6d6
commit fb4c064bec
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -63,9 +63,9 @@ impl SshAgentExt for RustService {
self.with_stage(super::RustServiceStage::BeforeDeps(Arc::new(
SshAgent::new(client.clone()),
)))
.with_stage(super::RustServiceStage::AfterBase(Arc::new(SshAgent::new(
client,
))))
.with_stage(super::RustServiceStage::BeforeBase(Arc::new(
SshAgent::new(client),
)))
}
}