Skip to content

Commit

Permalink
Merge pull request #1 from nlnwa/feat/md5sum-formatted-checksum-file
Browse files Browse the repository at this point in the history
Use "md5sum -b" style separator in generated checksum files
  • Loading branch information
maeb authored Nov 20, 2023
2 parents 7ffed61 + 02f2648 commit 8defb3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/checksum/checksum.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func MD5Sum(filepath string) (string, error) {
}

// separator is used to separate the checksum from the filepath in the checksum file.
const separator = " "
const separator = " *"

// CreateChecksumFile creates a checksum file for the given file.
// It returns the path to the created checksum file.
Expand Down

0 comments on commit 8defb3f

Please sign in to comment.