smalltalk
/
osmo-st-all
Archived
1
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
osmo-st-all/make_packages.sh

11 lines
226 B
Bash
Executable File

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