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