From fc6047fcb1c60bdd67b7da7200caf7231bdbd25a Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 10 Jun 2020 08:53:09 +0200 Subject: [PATCH] pxar: don't skip list+found by default This used to be default-off and was accidentally set to on-by-default with the pxar crate update. Signed-off-by: Wolfgang Bumiller --- src/bin/pxar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pxar.rs b/src/bin/pxar.rs index fc5b8046..13677305 100644 --- a/src/bin/pxar.rs +++ b/src/bin/pxar.rs @@ -335,7 +335,7 @@ fn create_archive( pattern_list, feature_flags, device_set, - true, + false, |path| { if verbose { println!("{:?}", path);