smalltalk
/
osmo-st-all
Archived
1
0
Fork 0

Added a nice make_package script from Joachim Jaeckel. Thanks Joachim!

This commit is contained in:
Nicolas Petton 2009-06-21 00:45:16 +00:00
parent ca99b59782
commit 40a03ae973
1 changed files with 10 additions and 0 deletions

10
make_packages.sh Executable file
View File

@ -0,0 +1,10 @@
GST_PACK=/usr/local/bin/gst-package
CURR_DIR=`pwd`
echo "Packaging in $CURR_DIR ..." > make_packages.log
for i in `find . -name package.xml`
do
echo "packaging $i ..."
$GST_PACK -t ~/.st $i >> make_packages.log
done