use empty string so TempDir uses the OS's temp dir automatically (Closes #2117)

This commit is contained in:
Sven Dowideit 2013-10-08 13:24:20 +10:00
parent 2d425af1b1
commit d03022b9ca
1 changed files with 1 additions and 2 deletions

View File

@ -458,9 +458,8 @@ func (b *buildFile) commit(id string, autoCmd []string, comment string) error {
var lineContinuation = regexp.MustCompile(`\s*\\\s*\n`)
func (b *buildFile) Build(context io.Reader) (string, error) {
// FIXME: @creack any reason for using /tmp instead of ""?
// FIXME: @creack "name" is a terrible variable name
name, err := ioutil.TempDir("/tmp", "docker-build")
name, err := ioutil.TempDir("", "docker-build")
if err != nil {
return "", err
}