Skip to content

Commit 871a7ae

Browse files
don't use NOPRIME in stack.sh
1 parent 8745286 commit 871a7ae

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

stack.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,6 @@ fi
376376

377377
# - We are going to install packages only for the services needed.
378378
# - We are parsing the packages files and detecting metadatas.
379-
# - If there is a NOPRIME as comment mean we are not doing the install
380-
# just yet.
381379
# - If we have the meta-keyword distro:DISTRO or
382380
# distro:DISTRO1,DISTRO2 it will be installed only for those
383381
# distros (case insensitive).
@@ -411,10 +409,6 @@ function get_packages() {
411409
OIFS=$IFS
412410
IFS=$'\n'
413411
for line in $(<${fname}); do
414-
if [[ $line =~ "NOPRIME" ]]; then
415-
continue
416-
fi
417-
418412
if [[ $line =~ (.*)#.*dist:([^ ]*) ]]; then # We are using BASH regexp matching feature.
419413
package=${BASH_REMATCH[1]}
420414
distros=${BASH_REMATCH[2]}

0 commit comments

Comments
 (0)