feat: from cuddle file up
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-02-03 19:55:08 +01:00
parent a62a88915e
commit 385e4ab771
Signed by: kjuulh
GPG Key ID: 57B6E1465221F912

View File

@ -40,7 +40,7 @@ pub struct CuddleCluster {
impl CuddleFile {
pub async fn from_cuddle_file() -> eyre::Result<Self> {
let cuddle_file_content = tokio::fs::read_to_string("cuddle.yaml").await?;
let cuddle_file_content = tokio::fs::read_to_string("../../cuddle.yaml").await?;
Self::parse_cuddle_file(&cuddle_file_content)
}