auto delete temp file while error

This commit is contained in:
ZhengYang 2014-08-13 17:15:32 +08:00
parent 83dd1e256a
commit 7c5ebae748
1 changed files with 4 additions and 0 deletions

View File

@ -263,6 +263,8 @@ func buildMigrationBinary(dir, binary string) {
if out, err := cmd.CombinedOutput(); err != nil {
ColorLog("[ERRO] Could not build migration binary: %s\n", err)
formatShellErrOutput(string(out))
removeTempFile(dir, binary)
removeTempFile(dir, binary+".go")
os.Exit(2)
}
}
@ -274,6 +276,8 @@ func runMigrationBinary(dir, binary string) {
if out, err := cmd.CombinedOutput(); err != nil {
formatShellOutput(string(out))
ColorLog("[ERRO] Could not run migration binary: %s\n", err)
removeTempFile(dir, binary)
removeTempFile(dir, binary+".go")
os.Exit(2)
} else {
formatShellOutput(string(out))