Skip to content

Commit

Permalink
feat: Change from filename to checksum as the default diff mode
Browse files Browse the repository at this point in the history
Now that the checksum is a lot easier to do than before, I think it
makes more sense to pick it as the default diff mode.

It will not be as easily understandable than GNU or Git, but will show
the problematic files whilst being more available than the GNU/git diff
modes.
  • Loading branch information
theofidry committed Oct 11, 2023
1 parent 9514193 commit 95e254c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Command/Diff.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public function getConfiguration(): Configuration
DiffMode::values(),
),
),
DiffMode::FILE_NAME->value,
DiffMode::CHECKSUM->value,
),
new InputOption(
self::CHECK_OPTION,
Expand Down

0 comments on commit 95e254c

Please sign in to comment.