mirror of
https://github.com/containers/skopeo.git
synced 2025-09-11 11:39:44 +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>
13 lines
255 B
Go
13 lines
255 B
Go
package denco
|
|
|
|
// NextSeparator returns an index of next separator in path.
|
|
func NextSeparator(path string, start int) int {
|
|
for start < len(path) {
|
|
if c := path[start]; c == '/' || c == TerminationCharacter {
|
|
break
|
|
}
|
|
start++
|
|
}
|
|
return start
|
|
}
|