Skip to content

Commit

Permalink
fix: do not reset maxFileSize to 0
Browse files Browse the repository at this point in the history
closes #6
  • Loading branch information
thetric committed Apr 3, 2017
1 parent 5ec32af commit 8d60bac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ final class Cli {
}

private void handleOptsReal(OptionAccessor options) {
long size = options.s == false ? 0 : options.s as Long
Long size = options.s == false ? null : options.s as Long
CliOptions cliOptions = new CliOptions(
syncDir: Paths.get(options.d as String),
showCourseSelection: options.c as boolean,
Expand Down

0 comments on commit 8d60bac

Please sign in to comment.