~ubuntu-branches/ubuntu/utopic/mongrel2/utopic

« back to all changes in this revision

Viewing changes to maketar.sh

  • Committer: Package Import Robot
  • Author(s): Jan Niehusmann
  • Date: 2014-06-11 15:26:26 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20140611152626-7ixr3pdpkvjk7h92
Tags: 1.9.1-1
* Update to upstream release 1.9.1
* remove binary .swf files from source tarball
* revert certificate workaround (fixed upstream)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set -x
 
2
NEWDIR=$(mktemp -d /tmp/tmp.XXXXXXXX)
 
3
OLDDIR=$(pwd)
 
4
cd $NEWDIR
 
5
git clone $OLDDIR/.git $1
 
6
cd $1
 
7
git submodule init
 
8
git submodule update
 
9
rm -rf .git
 
10
cd ..
 
11
tar c $1|bzip2 -9 > $OLDDIR/$1.tar.bz2
 
12
cd $OLDDIR
 
13
rm -rf $NEWDIR -- mongrel2-${VERSION}