diff --git a/pkg/archive/targz/targz_test.go b/pkg/archive/targz/targz_test.go index 7488ae8f708..7e7154626b3 100644 --- a/pkg/archive/targz/targz_test.go +++ b/pkg/archive/targz/targz_test.go @@ -87,7 +87,6 @@ func TestTarGzFile(t *testing.T) { } require.NoError(t, err) paths = append(paths, next.Name) - t.Logf("%s: %v", next.Name, next.FileInfo().Mode()) if next.Name == "sub1/executable" { ex := next.FileInfo().Mode() | 0o111 require.Equal(t, next.FileInfo().Mode().String(), ex.String()) diff --git a/www/docs/customization/docker.md b/www/docs/customization/docker.md index ef7a8f671b5..35e19975bc4 100644 --- a/www/docs/customization/docker.md +++ b/www/docs/customization/docker.md @@ -281,5 +281,9 @@ dockers: use: podman ``` -Note that GoReleaser will not install Podman for you, nor change any of its configuration. +Note that GoReleaser will not install Podman for you, nor change any of its +configuration. + +If you want to use it rootless, make sure to follow +[this guide](https://github.com/containers/podman/blob/main/docs/tutorials/rootless_tutorial.md).