From 78460c05c9c3d5ca0115333144ee75c5054af940 Mon Sep 17 00:00:00 2001 From: Tudor Marcu Date: Fri, 3 Mar 2017 14:12:50 -0800 Subject: [PATCH] Release v3.02 This release enables the build-all option which will generate all content for a mix; this means: chroots, all update content (manifests, packs, etc), and auto-increments the mixversion number so it can be run consecutively without any user intervention between mixes. Signed-off-by: Tudor Marcu --- Makefile | 2 +- src/mixer/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e5e7b40..6e4640b 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PROJECT_ROOT := src/ -VERSION = 3.01 +VERSION = 3.02 .DEFAULT_GOAL := all diff --git a/src/mixer/main.go b/src/mixer/main.go index ffc61c1..51b3e5d 100644 --- a/src/mixer/main.go +++ b/src/mixer/main.go @@ -33,7 +33,7 @@ func SetupBuilder(conf string, config interface{}) { } func main() { - fmt.Println("Mixer 3.01") + fmt.Println("Mixer 3.02") os.Setenv("LD_PRELOAD", "/usr/lib64/nosync/nosync.so") addcmd := flag.NewFlagSet("add-rpms", flag.ExitOnError)