fix another quoting issue in snappy

This commit is contained in:
Oliver Grawert 2015-07-09 12:12:48 +02:00
parent 34cf1d6d79
commit 572da9cdec
2 changed files with 8 additions and 2 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
livecd-rootfs (2.330) UNRELEASED; urgency=medium
* fix another quoting issue in snappy
-- Oliver Grawert <ogra@ubuntu.com> Thu, 09 Jul 2015 12:11:55 +0200
livecd-rootfs (2.329) wily; urgency=medium
[ Łukasz Zemczak ]

View File

@ -42,8 +42,8 @@ mkdir -p $TMPDIR/assets/
# and all others grub
# common bits
cat > $TMPDIR/hardware.yaml << EOF
kernel: assets/$(basename "$kernel")
initrd: assets/$(basename "$initrd")
kernel: assets/$(basename $kernel)
initrd: assets/$(basename $initrd)
partition-layout: system-AB
EOF