From ecdfc854208dcd65ec815a16fd4385abd97b114b Mon Sep 17 00:00:00 2001 From: teldra Date: Wed, 12 May 2021 16:19:40 +0200 Subject: [PATCH] remove step3/10-installation --- step3/10-installation | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 step3/10-installation 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