mirror of
https://github.com/containers/skopeo.git
synced 2025-09-22 02:18:41 +00:00
(skopeo copy) and (skopeo sync) 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>
23 lines
444 B
Go
23 lines
444 B
Go
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
type StandardLogger struct{}
|
|
|
|
func (StandardLogger) Printf(format string, args ...interface{}) {
|
|
if len(format) == 0 || format[len(format)-1] != '\n' {
|
|
format += "\n"
|
|
}
|
|
fmt.Fprintf(os.Stderr, format, args...)
|
|
}
|
|
|
|
func (StandardLogger) Debugf(format string, args ...interface{}) {
|
|
if len(format) == 0 || format[len(format)-1] != '\n' {
|
|
format += "\n"
|
|
}
|
|
fmt.Fprintf(os.Stderr, format, args...)
|
|
}
|