Child: [d80ce9] (diff)

Download this file

rebuild.bash    33 lines (32 with data), 594 Bytes

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