Skip to content

Commit

Permalink
Merge pull request #759 from Luap99/runtimePath
Browse files Browse the repository at this point in the history
Fix the fallback runtime path
  • Loading branch information
openshift-merge-robot committed Sep 8, 2021
2 parents 0be74e4 + 66fee59 commit f907b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/config/util_supported.go
Expand Up @@ -48,7 +48,7 @@ func getRuntimeDir() (string, error) {
}
}
if runtimeDir == "" {
tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("run-%s", uid))
tmpDir := filepath.Join(os.TempDir(), fmt.Sprintf("podman-run-%s", uid))
if err := os.MkdirAll(tmpDir, 0700); err != nil {
logrus.Debugf("unable to make temp dir %v", err)
}
Expand Down

0 comments on commit f907b47

Please sign in to comment.