Skip to content

Commit

Permalink
fix(minio): don't ignore resulting value
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Jul 15, 2024
1 parent f6ad53b commit 9e949f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minio/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn setup() -> Result<String, Error> {
let minio_dir = dag().get_env("MINIO_DIR")?;

if minio_dir.is_empty() {
dag().set_envs(vec![("MINIO_DIR".into(), ".".into())]);
dag().set_envs(vec![("MINIO_DIR".into(), ".".into())])?;
}

let stdout = dag()
Expand Down

0 comments on commit 9e949f6

Please sign in to comment.