Skip to content

Commit

Permalink
Merge pull request #57 from nodesource/automate
Browse files Browse the repository at this point in the history
Ignore EOL releases when populating map
  • Loading branch information
William Blankenship authored Aug 7, 2016
2 parents 7529fe0 + b65f6dc commit a5c1eff
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tools/gen-dists.sh
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@ for URL in ${DEB_URLS[@]}; do
# Load in the cached list of releases
RELEASES=$(cat "$DIR/gen_dists/${DIST}_release")
for RELEASE in $RELEASES; do
# Discontinued releases
if [[ "$RELEASE" == "lucid" || \
"$RELEASE" == "saucy" || \
"$RELEASE" == "utopic" ]]; then
continue
fi
# Check each deb to see if it belongs to this dist/release
# So many nested loops...
for DEB in $DEBS; do
Expand Down

0 comments on commit a5c1eff

Please sign in to comment.