Merge pull request #46 from ZhengYang/master

auto delete temp file while error
This commit is contained in:
astaxie 2014-08-13 20:16:18 +08:00
commit 088a12f9bd
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))