fix: include new files in patches

Previously, newly created files would not be
included in patches. This commit fixes that.
Additionally, removes some left over dbg! calls.
This commit is contained in:
daimond113 2025-02-10 08:43:48 +01:00
parent 1d131e98c6
commit faaa76cf0d
No known key found for this signature in database
GPG key ID: 640DC95EC1190354
3 changed files with 4 additions and 3 deletions

View file

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed ### Fixed
- Correct script linker require paths on Windows by @daimond113 - Correct script linker require paths on Windows by @daimond113
- Improve patches in incremental installs by @daimond113 - Improve patches in incremental installs by @daimond113
- Patches now include newly created files by @daimond113
### Changed ### Changed
- Patches are now applied before type extraction to allow patches to modify types by @daimond113 - Patches are now applied before type extraction to allow patches to modify types by @daimond113

View file

@ -192,7 +192,7 @@ impl Project {
.to_path_buf() .to_path_buf()
}) })
.collect::<HashSet<_>>(); .collect::<HashSet<_>>();
let patched_packages = Arc::new(dbg!(patched_packages)); let patched_packages = Arc::new(patched_packages);
let mut tasks = all_packages_dirs() let mut tasks = all_packages_dirs()
.into_iter() .into_iter()

View file

@ -55,10 +55,10 @@ pub fn create_patch<P: AsRef<Path>>(dir: P) -> Result<Vec<u8>, git2::Error> {
checkout_builder.path(MANIFEST_FILE_NAME); checkout_builder.path(MANIFEST_FILE_NAME);
repo.checkout_tree(original.as_object(), Some(&mut checkout_builder))?; 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(); let mut diff_options = git2::DiffOptions::default();
diff_options.include_untracked(true); diff_options.include_untracked(true);
diff_options.recurse_untracked_dirs(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))?; 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"); tracing::debug!("removing patch");
if dbg!(fs::metadata(&dot_git).await).is_err() { if fs::metadata(&dot_git).await.is_err() {
return Ok(()); return Ok(());
} }