with code
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-08-14 21:34:33 +02:00
parent 21cda03b6d
commit 4313c60056
2 changed files with 17 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ impl CuddleAction {
log::trace!("preparing to run action");
match ShellAction::new(
return match ShellAction::new(
self.name.clone(),
format!(
"{}/scripts/{}.sh",
@@ -70,7 +70,7 @@ impl CuddleAction {
log::error!("{}", e);
Err(e)
}
}
};
}
CuddleScript::Dagger(_d) => Err(anyhow::anyhow!("not implemented yet!")),
}