mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-06-07 16:11:38 +00:00
Better support for ubuntu-image artifact handling.
This commit is contained in:
parent
fdf685fc5e
commit
157e4b2ac2
@ -115,8 +115,14 @@ if [ "${IMAGEFORMAT:-}" = "ubuntu-image" ]; then
|
|||||||
# to tweak livecd-rootfs everytime a different type of artifact
|
# to tweak livecd-rootfs everytime a different type of artifact
|
||||||
# is needed.
|
# is needed.
|
||||||
for artifact in output/*; do
|
for artifact in output/*; do
|
||||||
mv $artifact $PREFIX.$(basename $artifact)
|
# We want to be dynamic, and want to support even
|
||||||
|
# two-part extensions.
|
||||||
|
filename=$(basename $artifact)
|
||||||
|
noversion=$(echo $filename | sed 's/[0-9][0-9]\.[0-9][0-9]//')
|
||||||
|
extension=${noversion#*.}
|
||||||
|
mv $artifact "$PREFIX".$extension
|
||||||
done
|
done
|
||||||
|
[ -f $PREFIX.img ] && xz -0 -T4 "$PREFIX".img
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user