the AURDEST environment variable can now be used to configure the build dir.
@@ -48,6 +48,11 @@ func initConfig() error {
}
+ aurdest := os.Getenv("AURDEST")
+ if aurdest != "" {
+ config.BuildDir = aurdest
+ }
+
return nil