mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
376ae7780b
Signed-off-by: Ahmet Alp Balkan <ahmetb@microsoft.com>
16 lines
341 B
Go
16 lines
341 B
Go
package utils
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// TempDir returns the default directory to use for temporary files.
|
|
func TempDir(rootDir string) (string, error) {
|
|
var tmpDir string
|
|
if tmpDir = os.Getenv("DOCKER_TMPDIR"); tmpDir == "" {
|
|
tmpDir = filepath.Join(rootDir, "tmp")
|
|
}
|
|
err := os.MkdirAll(tmpDir, 0700)
|
|
return tmpDir, err
|
|
}
|