Skip to content

Commit

Permalink
Merge pull request #56 from nodesource/automate
Browse files Browse the repository at this point in the history
Automate
  • Loading branch information
William Blankenship authored Aug 7, 2016
2 parents e22deaf + 855ab98 commit 7529fe0
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 @@ -53,6 +53,12 @@ for DIST in ${ALL_DISTS[@]}; do
echo "$RELEASES" > "$DIR/gen_dists/${DIST}_release"
# Iterate through each release and create a map for it in our file
for RELEASE in $RELEASES; do
# Discontinued releases
if [[ "$RELEASE" == "lucid" || \
"$RELEASE" == "saucy" || \
"$RELEASE" == "utopic" ]]; then
continue
fi
echo "dists['$DIST']['$RELEASE'] = []"
echo "dists['$DIST']['$RELEASE'] = []"
echo "dists['$DIST']['$RELEASE']['node'] = []"
Expand Down

0 comments on commit 7529fe0

Please sign in to comment.