We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8745286 commit 871a7aeCopy full SHA for 871a7ae
1 file changed
stack.sh
@@ -376,8 +376,6 @@ fi
376
377
# - We are going to install packages only for the services needed.
378
# - 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.
381
# - If we have the meta-keyword distro:DISTRO or
382
# distro:DISTRO1,DISTRO2 it will be installed only for those
383
# distros (case insensitive).
@@ -411,10 +409,6 @@ function get_packages() {
411
409
OIFS=$IFS
412
410
IFS=$'\n'
413
for line in $(<${fname}); do
414
- if [[ $line =~ "NOPRIME" ]]; then
415
- continue
416
- fi
417
-
418
if [[ $line =~ (.*)#.*dist:([^ ]*) ]]; then # We are using BASH regexp matching feature.
419
package=${BASH_REMATCH[1]}
420
distros=${BASH_REMATCH[2]}
0 commit comments