We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6cf506 commit b019ffbCopy full SHA for b019ffb
src/commands/mod.rs
@@ -69,6 +69,7 @@ pub fn run(
69
fast,
70
slow,
71
follow_symlinks,
72
+ disable_sandbox,
73
} => {
74
// After cleaning, if there are no input files left, exit
75
if files.is_empty() {
@@ -222,7 +223,8 @@ pub fn run(
222
223
})
224
225
}
- Subcommand::List { archives: files, tree } => {
226
+ // check again if we need to provide disable_sandbox as argument here
227
+ Subcommand::List { archives: files, tree, disable_sandbox} => {
228
let mut formats = vec![];
229
230
if let Some(format) = args.format {
0 commit comments