Fix more error strings

This commit is contained in:
Frederik Ring
2022-09-15 10:49:45 +02:00
parent eb9a198327
commit 00c83dfac7
4 changed files with 11 additions and 11 deletions

View File

@@ -63,7 +63,7 @@ func compress(paths []string, outFilePath, subPath string) error {
for _, p := range paths {
if err := writeTarGz(p, tarWriter, prefix); err != nil {
return fmt.Errorf("compress error writing %s to archive: %w", p, err)
return fmt.Errorf("compress: error writing %s to archive: %w", p, err)
}
}