Merge pull request #3347 from jazcap53/fix_ambiguous_warning

Change ambiguous Warning message
This commit is contained in:
MichaelEischer 2021-03-27 12:54:07 +01:00 committed by GitHub
commit efb10b3c40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ type BackupOptions struct {
var backupOptions BackupOptions
// ErrInvalidSourceData is used to report an incomplete backup
var ErrInvalidSourceData = errors.New("failed to read all source data during backup")
var ErrInvalidSourceData = errors.New("at least one source file could not be read")
func init() {
cmdRoot.AddCommand(cmdBackup)