Skip to content

Commit b019ffb

Browse files
committed
testing
1 parent a6cf506 commit b019ffb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/commands/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ pub fn run(
6969
fast,
7070
slow,
7171
follow_symlinks,
72+
disable_sandbox,
7273
} => {
7374
// After cleaning, if there are no input files left, exit
7475
if files.is_empty() {
@@ -222,7 +223,8 @@ pub fn run(
222223
})
223224
})
224225
}
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} => {
226228
let mut formats = vec![];
227229

228230
if let Some(format) = args.format {

0 commit comments

Comments
 (0)