mirror of https://github.com/dmarkham/enumer.git
Merge a0342d7531
into bcbe6173c3
This commit is contained in:
commit
5e27ec3867
|
@ -18,7 +18,6 @@ import (
|
|||
"go/importer"
|
||||
"go/token"
|
||||
"go/types"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
@ -149,7 +148,7 @@ func main() {
|
|||
}
|
||||
|
||||
// Write to tmpfile first
|
||||
tmpFile, err := ioutil.TempFile(dir, fmt.Sprintf("%s_enumer_", typs[0]))
|
||||
tmpFile, err := os.CreateTemp("", fmt.Sprintf("%s_enumer_", typs[0]))
|
||||
if err != nil {
|
||||
log.Fatalf("creating temporary file for output: %s", err)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue