Set TMPDIR enviroment variable for dump command (#1915)

This commit is contained in:
Jonas Östanbäck 2017-06-09 02:24:15 +02:00 committed by Bo-Yi Wu
parent 662b8bc2a2
commit b1b8c5e9f4
1 changed files with 5 additions and 0 deletions

View File

@ -74,6 +74,11 @@ func runDump(ctx *cli.Context) error {
}
log.Printf("Creating tmp work dir: %s", TmpWorkDir)
// work-around #1103
if os.Getenv("TMPDIR") == "" {
os.Setenv("TMPDIR", TmpWorkDir)
}
reposDump := path.Join(TmpWorkDir, "gitea-repo.zip")
dbDump := path.Join(TmpWorkDir, "gitea-db.sql")