Parent: [76fa99] (diff)

Download this file

rebuild.bash    9 lines (8 with data), 187 Bytes

1
2
3
4
5
6
7
8
#!/bin/bash
for APP in Allura* *Forge* NoWarnings
do
echo "# setting up $APP dependencies"
pushd $APP > /dev/null
python setup.py -q develop || exit
popd > /dev/null
done