We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fs_err
1 parent 8b11b90 commit 7c91402Copy full SHA for 7c91402
src/source/mod.rs
@@ -202,7 +202,9 @@ pub(crate) async fn fetch_source(
202
rendered_sources.push(Source::Url(src.clone()));
203
}
204
Source::Path(src) => {
205
- let src_path = recipe_dir.join(src.path()).canonicalize()?;
+ let rel_src_path = src.path();
206
+ tracing::debug!("Processing source path '{}'", rel_src_path.display());
207
+ let src_path = fs::canonicalize(recipe_dir.join(rel_src_path))?;
208
tracing::info!("Fetching source from path: {}", src_path.display());
209
210
let dest_dir = if let Some(target_directory) = src.target_directory() {
0 commit comments