Sebastian Hahn commited on 2012-01-16 11:56:03
Zeige 2 geänderte Dateien mit 9 Einfügungen und 4 Löschungen.
This reverts commit 2790f8f20f2398eda08bd8e98b4930327a63b8eb. Looks like some stuff got accidentally committed, most importantly the make clean removal and the change of the stable/alpha version
... | ... |
@@ -2,7 +2,7 @@ |
2 | 2 |
# |
3 | 3 |
# 1. Clone the Tor git repository and make TORGIT point to it: |
4 | 4 |
# |
5 |
-# git clone git://git.torproject.org/tor/ tor |
|
5 |
+# git clone git://git.torproject.org/tor/ tor.git |
|
6 | 6 |
# |
7 | 7 |
# Note that you will need to point to the actual .git directory. |
8 | 8 |
# 2. Edit include/versions.wmi or others if you like |
... | ... |
@@ -10,9 +10,9 @@ |
10 | 10 |
# 4. make |
11 | 11 |
# 5. ./publish |
12 | 12 |
|
13 |
-export TORGIT=/Users/erinn/src/tor.git/.git |
|
14 |
-export STABLETAG=tor-0.2.2.24-alpha |
|
15 |
-export DEVTAG=tor-0.2.2.24-alpha |
|
13 |
+export TORGIT=set this to your tor.git path |
|
14 |
+export STABLETAG=tor-0.2.2.35 |
|
15 |
+export DEVTAG=tor-0.2.3.10-alpha |
|
16 | 16 |
|
17 | 17 |
WMLBASE=. |
18 | 18 |
SUBDIRS=docs eff projects press about download getinvolved donate torbutton |
... | ... |
@@ -1,8 +1,13 @@ |
1 | 1 |
#!/bin/sh |
2 | 2 |
set -e # stop if we encounter an error |
3 | 3 |
|
4 |
+# pull the latest changes |
|
4 | 5 |
svn update |
6 |
+ |
|
7 |
+# clean up the working directory |
|
5 | 8 |
make clean |
9 |
+ |
|
10 |
+# actually build the site |
|
6 | 11 |
make -j3 |
7 | 12 |
|
8 | 13 |
# don't copy over stuff with permissions that make it useless |
9 | 14 |