Skip to content

Commit

Permalink
fix: tar: type in error message [minor]
Browse files Browse the repository at this point in the history
  • Loading branch information
sloonz committed Jan 24, 2024
1 parent e1badda commit a797ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/tar.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ type tarSource struct {
func newTarSource(options *uback.Options) (uback.Source, error) {
snapshotsPath := options.String["SnapshotsPath"]
if snapshotsPath == "" {
tarLog.Warnf("SnapshotsPath option missing, incremental backups will not impossible")
tarLog.Warnf("SnapshotsPath option missing, incremental backups will be impossible")
} else {
err := os.MkdirAll(snapshotsPath, 0777)
if err != nil {
Expand Down

0 comments on commit a797ef3

Please sign in to comment.