restructure install echo

This commit is contained in:
teldra 2021-03-12 14:20:23 +01:00
parent 6c75be3814
commit 2d36b4cb7b
1 changed files with 8 additions and 4 deletions

View File

@ -1,9 +1,5 @@
module start "installation" "Installation" "dontcheck"
echo ""
echo "recent fingerprint: 60:ae:0c:d6:f0:95:17:80:bc:93:46:7a:89:af:a3:2d"
echo ""
if [[ "${#ignorepkg[@]}" -gt 0 ]]; then
mkdir -p "${dest}"/etc/xbps.d/
touch "${dest}"/etc/xbps.d/10-ignore-pkg.conf
@ -14,6 +10,14 @@ if [[ "${#ignorepkg[@]}" -gt 0 ]]; then
done
fi
echo ""
echo "pkg install: ${pkg[@]}"
echo ""
echo ""
echo "recent fingerprint: 60:ae:0c:d6:f0:95:17:80:bc:93:46:7a:89:af:a3:2d"
echo ""
if [[ "${#pkg[@]}" -gt 0 ]]; then
inst "${pkg[@]}"
else