|
Revision 1996, 456 bytes
(checked in by karpet, 5 months ago)
|
tweeks to build process
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
|
|---|
| 3 |
if test ! -n "$1"; then |
|---|
| 4 |
echo "Must specify path to the root of the site (e.g. $HOME)" |
|---|
| 5 |
exit 1 |
|---|
| 6 |
fi |
|---|
| 7 |
|
|---|
| 8 |
ROOT="$1" |
|---|
| 9 |
|
|---|
| 10 |
$ROOT/swish_website/bin/index_hypermail.pl $ROOT/archive \ |
|---|
| 11 |
| swish-e \ |
|---|
| 12 |
-S prog \ |
|---|
| 13 |
-i stdin \ |
|---|
| 14 |
-c $ROOT/swish_website/etc/archive.conf \ |
|---|
| 15 |
-f $ROOT/indexes/archive.swish-e \ |
|---|
| 16 |
-W0 \ |
|---|
| 17 |
-v0 |
|---|
| 18 |
|
|---|
| 19 |
|
|---|