mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	 069edc3adf
			
		
	
	069edc3adf
	
	
	
		
			
			(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>
		
			
				
	
	
		
			16 lines
		
	
	
		
			239 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			239 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build darwin
 | |
| 
 | |
| package open
 | |
| 
 | |
| import (
 | |
| 	"os/exec"
 | |
| )
 | |
| 
 | |
| func open(input string) *exec.Cmd {
 | |
| 	return exec.Command("open", input)
 | |
| }
 | |
| 
 | |
| func openWith(input string, appName string) *exec.Cmd {
 | |
| 	return exec.Command("open", "-a", appName, input)
 | |
| }
 |