Skip to content

Commit

Permalink
fixup! compose: Add --ex-unified-core
Browse files Browse the repository at this point in the history
  • Loading branch information
cgwalters committed Nov 17, 2017
1 parent 281ea46 commit c25b395
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/compose-tests/libbasic-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ for path in /boot /usr/lib/ostree-boot; do
assert_file_has_content bootls.txt initramfs-
echo "ok boot files"
done
kver=$(grep /vmlinuz bootls.txt | sed -e 's,.*/vmlinuz-\(.*\)-[0-9a-e].*$,\1,')
vmlinuz_line=$(grep -o '/vmlinuz.*$')
kver=$(echo ${vmlinuz_line} | sed -e 's,^/,,' -e 's,-[0-9a-f]*$,,')
ostree --repo=${repobuild} ls ${treeref} /usr/lib/modules/${kver}/{vmlinuz,initramfs.img} >/dev/null

ostree --repo=${repobuild} ls -R ${treeref} /usr/share/man > manpages.txt
Expand Down

0 comments on commit c25b395

Please sign in to comment.