remove step3/10-installation

This commit is contained in:
teldra 2021-05-12 16:19:40 +02:00
parent 98cf10d2cb
commit ecdfc85420
1 changed files with 0 additions and 18 deletions

View File

@ -1,18 +0,0 @@
module start "installation" "Installation" "dontcheck"
for i in ${pkg[@]}; do
for j in ${removepkg[@]}; do
if [[ "${i}" == "${j}" ]]; then
continue 2
fi
done
toinstall+=( "$i" )
done
if [[ "${#toinstall[@]}" -gt 0 ]]; then
xbps-install -Sy "${toinstall[@]}"
else
echo nothing to do
fi
module end