From a797ef30a07fde549b818f82095390c25513d961 Mon Sep 17 00:00:00 2001 From: Simon Lipp Date: Wed, 24 Jan 2024 22:06:32 +0100 Subject: [PATCH] fix: tar: type in error message [minor] --- sources/tar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/tar.go b/sources/tar.go index 42389b9..72cab41 100644 --- a/sources/tar.go +++ b/sources/tar.go @@ -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 {