forked from mirror/enumer
Merge pull request #47 from osctobe/master
Create tempfile in the output directory
This commit is contained in:
commit
ddc705194a
|
@ -134,7 +134,8 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write to tmpfile first
|
// Write to tmpfile first
|
||||||
tmpFile, err := ioutil.TempFile("", fmt.Sprintf("%s_enumer_", types[0]))
|
tmpName := fmt.Sprintf("%s_enumer_", filepath.Base(types[0]))
|
||||||
|
tmpFile, err := ioutil.TempFile(filepath.Dir(types[0]), tmpName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalf("creating temporary file for output: %s", err)
|
log.Fatalf("creating temporary file for output: %s", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue