|
a |
|
b/rebuild.bash |
|
|
1 |
echo '# setup pyforge...'
|
|
|
2 |
pushd pyforge
|
|
|
3 |
python setup.py develop
|
|
|
4 |
popd
|
|
|
5 |
echo '# setup ForgeDiscussion...'
|
|
|
6 |
pushd ForgeDiscussion
|
|
|
7 |
python setup.py develop
|
|
|
8 |
popd
|
|
|
9 |
echo '# setup ForgeGit...'
|
|
|
10 |
pushd ForgeGit
|
|
|
11 |
python setup.py develop
|
|
|
12 |
popd
|
|
|
13 |
echo '# setup ForgeHg...'
|
|
|
14 |
pushd ForgeHg
|
|
|
15 |
python setup.py develop
|
|
|
16 |
popd
|
|
|
17 |
echo '# setup ForgeMail...'
|
|
|
18 |
pushd ForgeMail
|
|
|
19 |
python setup.py develop
|
|
|
20 |
popd
|
|
|
21 |
echo '# setup ForgeTracker...'
|
|
|
22 |
pushd ForgeTracker
|
|
|
23 |
python setup.py develop
|
|
|
24 |
popd
|
|
|
25 |
echo '# setup ForgeWiki...'
|
|
|
26 |
pushd ForgeWiki
|
|
|
27 |
python setup.py develop
|
|
|
28 |
popd
|
|
|
29 |
echo '# setup HelloForge...'
|
|
|
30 |
pushd HelloForge
|
|
|
31 |
python setup.py develop
|
|
|
32 |
popd
|