diff --git a/CHANGELOG.md b/CHANGELOG.md index f3cb8e7..d98fe3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Correct script linker require paths on Windows by @daimond113 - Improve patches in incremental installs by @daimond113 +- Patches now include newly created files by @daimond113 ### Changed - Patches are now applied before type extraction to allow patches to modify types by @daimond113 diff --git a/src/linking/incremental.rs b/src/linking/incremental.rs index a4a9744..7c32d3e 100644 --- a/src/linking/incremental.rs +++ b/src/linking/incremental.rs @@ -192,7 +192,7 @@ impl Project { .to_path_buf() }) .collect::>(); - let patched_packages = Arc::new(dbg!(patched_packages)); + let patched_packages = Arc::new(patched_packages); let mut tasks = all_packages_dirs() .into_iter() diff --git a/src/patches.rs b/src/patches.rs index f9f85a5..6144a9f 100644 --- a/src/patches.rs +++ b/src/patches.rs @@ -55,10 +55,10 @@ pub fn create_patch>(dir: P) -> Result, git2::Error> { checkout_builder.path(MANIFEST_FILE_NAME); repo.checkout_tree(original.as_object(), Some(&mut checkout_builder))?; - // TODO: despite all the options, this still doesn't include untracked files let mut diff_options = git2::DiffOptions::default(); diff_options.include_untracked(true); diff_options.recurse_untracked_dirs(true); + diff_options.show_untracked_content(true); let diff = repo.diff_tree_to_workdir(Some(&original), Some(&mut diff_options))?; @@ -169,7 +169,7 @@ pub async fn remove_patch(container_folder: PathBuf) -> Result<(), errors::Apply tracing::debug!("removing patch"); - if dbg!(fs::metadata(&dot_git).await).is_err() { + if fs::metadata(&dot_git).await.is_err() { return Ok(()); }