Child: [c17704] (diff)

Download this file

rebuild-all.bash    10 lines (9 with data), 315 Bytes

1
2
3
4
5
6
7
8
9
#!/bin/bash
for APP in Allura* *Forge* NoWarnings
do
echo "# setting up $APP dependencies"
pushd $APP > /dev/null
python setup.py -q develop || echo " # Error setting up $APP
# You may want to run 'pip uninstall $APP' to un-register it so you don't get further errors."
popd > /dev/null
done