Move autogen'd files to artifacts dir
This commit is contained in:
parent
37190ba7e7
commit
cf669b52c2
|
@ -1,3 +1,4 @@
|
|||
artifacts/
|
||||
debootstrap/
|
||||
*.iso
|
||||
*.squashfs
|
||||
|
|
|
@ -108,14 +108,18 @@ build_iso() {
|
|||
popd &>/dev/null
|
||||
echo "done."
|
||||
|
||||
echo -n "Moving generated ISO to '$(pwd)/pvc-installer.iso'... "
|
||||
mv ${tempdir}/pvc-installer.iso pvc-installer.iso &>/dev/null || fail "Error moving ISO file."
|
||||
echo -n "Moving generated ISO to './pvc-installer.iso'... "
|
||||
mv ${tempdir}/pvc-installer.iso ../pvc-installer.iso &>/dev/null || fail "Error moving ISO file."
|
||||
echo "done."
|
||||
}
|
||||
|
||||
pushd artifacts/
|
||||
|
||||
prepare_iso
|
||||
prepare_rootfs
|
||||
build_iso
|
||||
cleanup
|
||||
|
||||
popd
|
||||
|
||||
echo "PVC Live Installer ISO generation complete."
|
||||
|
|
Loading…
Reference in New Issue