osbuild2: fix typo in tar stage option value

Related to https://github.com/osbuild/osbuild/pull/940

Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
Tomas Hozza 2021-12-22 09:21:07 +01:00 committed by Tomáš Hozza
parent 35ef067396
commit 885fe3d2b4

View file

@ -7,7 +7,7 @@ type TarArchiveFormat string
// valid values for the 'format' Tar stage option
const (
TarArchiveFormatGnu TarArchiveFormat = "gnu"
TarArchiveFormatOldgnu TarArchiveFormat = "oldngu"
TarArchiveFormatOldgnu TarArchiveFormat = "oldgnu"
TarArchiveFormatPosix TarArchiveFormat = "posix"
TarArchiveFormatUstar TarArchiveFormat = "ustar"
TarArchiveFormatV7 TarArchiveFormat = "v7"