diff --git a/make_packages.sh b/make_packages.sh new file mode 100755 index 0000000..597dca9 --- /dev/null +++ b/make_packages.sh @@ -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 +