mirror of
https://github.com/containers/podman.git
synced 2025-06-22 18:08:11 +08:00
sign: use filepath.Join instead of fmt.Sprintf
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net/url"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
"strings"
|
||||
|
||||
@ -141,7 +141,7 @@ func signCmd(c *cli.Context) error {
|
||||
return errors.Wrapf(err, "error creating new signature")
|
||||
}
|
||||
|
||||
sigStoreDir = fmt.Sprintf("%s/%s", sigStoreDir, strings.Replace(repos[0][strings.Index(repos[0], "/")+1:len(repos[0])], ":", "=", 1))
|
||||
sigStoreDir = filepath.Join(sigStoreDir, strings.Replace(repos[0][strings.Index(repos[0], "/")+1:len(repos[0])], ":", "=", 1))
|
||||
if err := os.MkdirAll(sigStoreDir, 0751); err != nil {
|
||||
// The directory is allowed to exist
|
||||
if !os.IsExist(err) {
|
||||
@ -154,7 +154,7 @@ func signCmd(c *cli.Context) error {
|
||||
logrus.Errorf("error creating sigstore file: %v", err)
|
||||
continue
|
||||
}
|
||||
err = ioutil.WriteFile(sigStoreDir+"/"+sigFilename, newSig, 0644)
|
||||
err = ioutil.WriteFile(filepath.Join(sigStoreDir, sigFilename), newSig, 0644)
|
||||
if err != nil {
|
||||
logrus.Errorf("error storing signature for %s", rawSource.Reference().DockerReference().String())
|
||||
continue
|
||||
|
Reference in New Issue
Block a user