mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-04-05 03:10:57 +01:00
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:
parent
1d131e98c6
commit
faaa76cf0d
3 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -192,7 +192,7 @@ impl Project {
|
|||
.to_path_buf()
|
||||
})
|
||||
.collect::<HashSet<_>>();
|
||||
let patched_packages = Arc::new(dbg!(patched_packages));
|
||||
let patched_packages = Arc::new(patched_packages);
|
||||
|
||||
let mut tasks = all_packages_dirs()
|
||||
.into_iter()
|
||||
|
|
|
@ -55,10 +55,10 @@ pub fn create_patch<P: AsRef<Path>>(dir: P) -> Result<Vec<u8>, 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(());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue