Merge pull request #1067 from Morganamilo/aurdest

Support AURDEST
This commit is contained in:
Anna 2019-10-21 12:34:18 +01:00 committed by GitHub
commit 155c363001
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,11 @@ func initConfig() error {
}
}
aurdest := os.Getenv("AURDEST")
if aurdest != "" {
config.BuildDir = aurdest
}
return nil
}