Compare commits

...

2 Commits

Author SHA1 Message Date
Brad T. Peters 58ddb254dc Release v1.03
This release patches a bug where whitespace was not being
correctly stripped from package names

Signed-off-by: Brad T. Peters <brad.t.peters@intel.com>
2016-04-12 13:58:56 -07:00
Brad T. Peters 18620f4efb Fix whitespace issue with pkg name
Preceeding or trailing whitespaces must be stripped

Signed-off-by: Brad T. Peters <brad.t.peters@intel.com>
2016-04-12 13:54:59 -07:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -80,6 +80,7 @@ def install_bundle(out_dir, postfix, bundle, bundles, yum_cmd):
pkgs = "".join(lines)
to_install = []
for pkg in pkgs.splitlines():
pkg = pkg.strip()
# Don't add blank lines or lines with leading '#'
if len(pkg) == 0 or pkg[0] == "#":
continue
+1 -1
View File
@@ -1,5 +1,5 @@
AC_PREREQ([2.68])
AC_INIT([bundle-chroot-builder],[1.02],[tudor.marcu@intel.com],[bundle-chroot-builder])
AC_INIT([bundle-chroot-builder],[1.03],[tudor.marcu@intel.com],[bundle-chroot-builder])
AM_INIT_AUTOMAKE([foreign silent-rules color-tests no-dist-gzip dist-xz])
AC_CONFIG_FILES(Makefile)
AC_PREFIX_DEFAULT(/usr/local)