Changeset 2023 for swish_website

Show
Ignore:
Timestamp:
02/22/08 08:44:45 (11 months ago)
Author:
joshr
Message:

added code to build the 2.6/2.7 branch too,
and also to use --no-symlink and new --no-latest
options to swish-daily.pl so that symlinks are
not created for the 2.6/2.7 branch tarball/dir.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • swish_website/Make_Daily.sh

    r1761 r2023  
    33DIR="${BASE_DIR:=$HOME/swish}" 
    44 
    5  
     5############################################  
     6# build the 2.4 branch 
    67swish-daily.pl \ 
    78    --topdir=$DIR/swish_daily_build \ 
    89    --tardir=$DIR/swish-daily || exit 1; 
    910 
     11 
     12############################################  
     13# build the 2.6 branch (which makes 2.7.0 now) 
     14# --no-latest  avoids making latest.tar.gz      symlink.  
     15# --no-symlink avoids making latest_swish_build symlink 
     16swish-daily.pl \ 
     17    --svnco='svn co http://svn.swish-e.org/swish-e/branches/2.6/' \ 
     18    --no-latest \ 
     19    --no-symlink \ 
     20    --topdir=$DIR/swish_daily_build \ 
     21    --tardir=$DIR/swish-daily || exit 1; 
     22