toolbox: create tmp dir if missing
Create the tmp dir if the image doesn't have one.
This commit is contained in:
parent
634a8a543c
commit
4e07550f30
|
@ -45,6 +45,12 @@ func init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func createFile(r io.Reader) (string, error) {
|
func createFile(r io.Reader) (string, error) {
|
||||||
|
// create a temp dir if the image doesn't have one
|
||||||
|
tmpDir := os.TempDir()
|
||||||
|
if err := os.MkdirAll(tmpDir, 0777); err != nil {
|
||||||
|
return "", fmt.Errorf("failed to create tmp dir %q", tmpDir)
|
||||||
|
}
|
||||||
|
|
||||||
file, err := ioutil.TempFile("", "")
|
file, err := ioutil.TempFile("", "")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
|
|
Loading…
Reference in New Issue