Skip to content
Snippets Groups Projects
Unverified Commit e0401295 authored by Ian Douglas Scott's avatar Ian Douglas Scott
Browse files

Rename update-all.sh to update-packages.sh; make it optionally allow

a list of packages as arguments
parent 3bd2f7cf
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,14 @@ ...@@ -2,7 +2,14 @@
set -e set -e
for recipe in `ls -1 recipes` if [ $# = 0 ]
then
recipes=$(ls -1 recipes)
else
recipes=$@
fi
for recipe in $recipes
do do
if [ ! -f "recipes/$recipe/stage.tar" ] if [ ! -f "recipes/$recipe/stage.tar" ]
then then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment