Publish packages in update

This commit is contained in:
Jeremy Soller 2017-04-08 16:50:18 -06:00
parent 7b0287c0a0
commit c2e315220b
2 changed files with 7 additions and 6 deletions

6
ci.sh
View File

@ -1,6 +0,0 @@
#!/bin/bash
set -e
./update-packages.sh
./all.sh publish

View File

@ -9,6 +9,7 @@ else
recipes=$@
fi
publish=""
for recipe in $recipes
do
if [ ! -f "recipes/$recipe/stage.tar" ]
@ -25,6 +26,12 @@ do
else
echo "$recipe: updating $oldver -> $newver..."
./cook.sh $recipe dist
publish="${publish} $recipe"
fi
fi
done
for recipe in $publish
do
./cook.sh $recipe publish
done