Skip to content

Commit

Permalink
Merge pull request #4 from habitat-sh/ci-fix
Browse files Browse the repository at this point in the history
 fix ci
  • Loading branch information
sajjaphani authored May 7, 2024
2 parents 048085d + e512496 commit 670c269
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/core/auto_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -365,8 +365,11 @@ impl AutoBuildContext {
let store_path = if store_path.is_absolute() {
store_path.clone()
} else {
auto_build_ctx_path.as_ref().join(store_path)
.absolutize()?.to_path_buf()
auto_build_ctx_path
.as_ref()
.join(store_path)
.absolutize()?
.to_path_buf()
};
let store = Store::new(&store_path).with_context(|| {
format!(
Expand Down

0 comments on commit 670c269

Please sign in to comment.