Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions bin/core/src/stack/remote.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ pub async fn get_repo_compose_contents(
let run_directory = repo_path.join(&stack.config.run_directory);
// This will remove any intermediate '/./' which can be a problem for some OS.
let run_directory = run_directory.components().collect::<PathBuf>();
if !run_directory.exists() {
anyhow::bail!("Failed to access stack run directory {stack_path:?}", stack_path = &stack.config.run_directory);
}

let mut successful = Vec::new();
let mut errored = Vec::new();
Expand Down