fix quoting issue with the last change

This commit is contained in:
Oliver Grawert 2015-07-08 22:51:49 +02:00
parent c4a9547397
commit 0805723ed1
2 changed files with 8 additions and 2 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
livecd-rootfs (2.328) UNRELEASED; urgency=medium
* fix quoting issue with the last change ...
-- Oliver Grawert <ogra@ubuntu.com> Wed, 08 Jul 2015 22:51:04 +0200
livecd-rootfs (2.327) wily; urgency=medium
* merge lp:~sergiusens/livecd-rootfs/snappyDevicePart for using versioned

View File

@ -28,8 +28,8 @@ mkdir -p $TMPDIR/assets/
initrd=boot/initrd.img-*
cp -ar "$initrd" $TMPDIR/assets/
cp -ar "$kernel" $TMPDIR/assets/
cp -ar $initrd $TMPDIR/assets/
cp -ar $kernel $TMPDIR/assets/
cp -ar boot/abi-* boot/System.map-* $TMPDIR/assets/
dtbs=$(find lib/firmware -type d -name 'device-tree' -print0)