diff --git a/step3/10-installation b/step3/10-installation deleted file mode 100644 index d53ef67..0000000 --- a/step3/10-installation +++ /dev/null @@ -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