Parent: [b9d0b1] (diff)

Child: [3abb2e] (diff)

Download this file

rebuild.bash    43 lines (43 with data), 787 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
33
34
35
36
37
38
39
40
41
42
43
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 ForgeLink...'
pushd ForgeLink
python setup.py develop
popd
echo '# setup ForgeSVN...'
pushd ForgeSVN
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
pushd ForgeDownloads
python setup.py develop
popd