diff -Nru customizer-4.1.0/debian/bzr-builder.manifest customizer-4.1.0/debian/bzr-builder.manifest --- customizer-4.1.0/debian/bzr-builder.manifest 2015-07-11 02:46:31.000000000 +0000 +++ customizer-4.1.0/debian/bzr-builder.manifest 2015-07-20 03:01:34.000000000 +0000 @@ -1,2 +1,2 @@ -# bzr-builder format 0.3 deb-version {debupstream}-0~213 -lp:~eloaders/customizer/stable revid:git-v1:6344922f978b061c9c9e04bf01ae0608e8adbd67 +# bzr-builder format 0.3 deb-version {debupstream}-0~215 +lp:~eloaders/customizer/stable revid:git-v1:c16fdedc045679b6b6359be5b3f4d17a388da725 diff -Nru customizer-4.1.0/debian/changelog customizer-4.1.0/debian/changelog --- customizer-4.1.0/debian/changelog 2015-07-11 02:46:31.000000000 +0000 +++ customizer-4.1.0/debian/changelog 2015-07-20 03:01:34.000000000 +0000 @@ -1,8 +1,8 @@ -customizer (4.1.0-0~213~ubuntu14.10.1) utopic; urgency=low +customizer (4.1.0-0~215~ubuntu14.10.1) utopic; urgency=low * Auto build. - -- sonicwalker Sat, 11 Jul 2015 02:46:31 +0000 + -- sonicwalker Mon, 20 Jul 2015 03:01:34 +0000 customizer (4.1.0) unstable; urgency=medium diff -Nru customizer-4.1.0/src/actions/hook.py customizer-4.1.0/src/actions/hook.py --- customizer-4.1.0/src/actions/hook.py 2015-07-11 02:46:31.000000000 +0000 +++ customizer-4.1.0/src/actions/hook.py 2015-07-20 03:01:34.000000000 +0000 @@ -27,5 +27,5 @@ message.sub_info('Running HOOK') misc.chroot_exec(('/hook')) finally: - if os.path.isfie(hook_file): - os.unlink(hook_file) \ No newline at end of file + if os.path.isfile(hook_file): + os.unlink(hook_file) diff -Nru customizer-4.1.0/src/actions/rebuild.py customizer-4.1.0/src/actions/rebuild.py --- customizer-4.1.0/src/actions/rebuild.py 2015-07-11 02:46:31.000000000 +0000 +++ customizer-4.1.0/src/actions/rebuild.py 2015-07-20 03:01:34.000000000 +0000 @@ -119,7 +119,7 @@ shutil.rmtree(confdir) os.makedirs(confdir) try: - misc.chroot_exec('zcat ' + initrd.lstrip(config.FILESYSTEM_DIR) + ' | ' + ' cpio --quiet -id conf/uuid.conf', \ + misc.chroot_exec('zcat ' + initrd.replace(config.FILESYSTEM_DIR, '') + ' | cpio --quiet -id conf/uuid.conf', \ shell=True, cwd=config.FILESYSTEM_DIR) kernel = re.search('initrd.img-*.*.*-*-(.*)', initrd).group(1) message.sub_debug('Kernel', kernel)