Skip to content

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Ragnt committed Jan 10, 2024
1 parent 20f0bff commit a123c37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ struct Arguments {
notransmit: bool,
#[arg(long)]
/// Optional tar output files.
tar: bool,
notar: bool,
#[arg(long)]
/// Optional send deauths.
deauth: bool,
Expand Down Expand Up @@ -2122,7 +2122,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
print_handshake_summary(&handshakes_map);
output_files.extend(hashfiles);

if cli.tar {
if !cli.notar {
println!("📦 Creating Output Tarball ({}.tar.gz)...", filename);
let _ = tar_and_compress_files(output_files, &filename);
}
Expand Down

0 comments on commit a123c37

Please sign in to comment.