Skip to content

Commit

Permalink
Fix minor copy-paste issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rock3r authored Jun 6, 2018
1 parent 13f5970 commit c37665f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deep-clean
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ val parsedArgs: CommandLineArguments = Docopt(usage)

val nukeItFromOrbit: Boolean = parsedArgs.isFlagSet("--nuke", "-n")
val dryRun: Boolean = parsedArgs.isFlagSet("--dry-run", "-d")
val verbose: Boolean = false || parsedArgs.isFlagSet("--verbose", "-v")
val verbose: Boolean = dryRun || parsedArgs.isFlagSet("--verbose", "-v")

if (dryRun) println("\nℹ️ This is a dry-run.\n")

Expand Down

0 comments on commit c37665f

Please sign in to comment.