From 1b2e13b4c7bdd4ad487f0b740cf9dde0c9b270c0 Mon Sep 17 00:00:00 2001 From: 9382 Date: Tue, 1 Oct 2024 20:32:59 +0100 Subject: [PATCH] fix decompiling history into git Why does this work and the version with the directory doesn't? yeah idk. But hey, this one successfully stages the files, so ill take it --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 12e2e84..853c3ae 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1266,11 +1266,11 @@ async fn write_commit(config:WriteCommitConfig,b:Result(), Err(e)=>println!("tree_index.add_all error: {}",e), } - match tree_index.update_all(std::iter::once(config.output_folder.as_path()),None){ + match tree_index.update_all(std::iter::once("*"),None){ Ok(_)=>(), Err(e)=>println!("tree_index.update_all error: {}",e), }