mirror of
https://github.com/containers/podman.git
synced 2025-05-22 01:27:07 +08:00

(podman push) and (podman manifest push) now support --sign-by-sigstore=param-file, using the containers-sigstore-signing-params.yaml(5) file format. That notably adds support for Fulcio and Rekor signing. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
10 lines
139 B
Go
10 lines
139 B
Go
// +build !go1.8
|
|
|
|
package middleware
|
|
|
|
import "net/url"
|
|
|
|
func pathUnescape(path string) (string, error) {
|
|
return url.QueryUnescape(path)
|
|
}
|