|
Revision 1837, 0.6 kB
(checked in by whmoseley, 2 years ago)
|
Need to provide symlink to source code after building
release
|
- Property svn:eol-style set to
native
- Property svn:executable set to
*
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
|
|---|
| 3 |
DIR="${BASE_DIR:=$HOME/swish}" |
|---|
| 4 |
|
|---|
| 5 |
if test ! -n "$1"; then |
|---|
| 6 |
echo "Must specify URL to fetch" |
|---|
| 7 |
exit 1 |
|---|
| 8 |
fi |
|---|
| 9 |
|
|---|
| 10 |
TAR_URL="$1" |
|---|
| 11 |
|
|---|
| 12 |
swish-daily.pl \ |
|---|
| 13 |
--fetchtarurl="$TAR_URL" \ |
|---|
| 14 |
--topdir=$DIR/swish_release_build \ |
|---|
| 15 |
--noremove \ |
|---|
| 16 |
--notimestamp \ |
|---|
| 17 |
--verbose \ |
|---|
| 18 |
--tardir=$DIR/swish-releases || exit 1; |
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|