root/freepbx/branches/2.2/gen-dist

Revision 2821, 413 bytes (checked in by diego_iastrubni, 7 years ago)

more fixes for ticket:695

  • Property svn:mime-type set to text/plain
  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1 #! /usr/bin/env sh
2
3 #
4 # a small script which exports this current directory and generates a
5 # release tarball
6 #
7 # public domain, Diego Iastrubni
8
9
10 set -e
11
12 FREEPBX_VER=2.2.0-prealpha
13 FILENAME=freepbx-$FREEPBX_VER.tar.gz
14 TMPDIR=`mktemp -d -p /tmp/ freepbx-release-XXXXXX`
15
16 svn export . $TMPDIR/freepbx-$FREEPBX_VER
17 tar -czf  $FILENAME -C $TMPDIR .
18 rm -fr $TMPDIR
19
20 echo Used $TMPDIR, compressed image is $FILENAME
Note: See TracBrowser for help on using the browser.