source: trunk/tools/pwg_rel_create.sh @ 15224

Last change on this file since 15224 was 13972, checked in by plg, 12 years ago

merge r13971 from branch 2.3 to trunk

add package version -nochmod

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 992 bytes
Line 
1#!/bin/bash
2
3# +--------------------------------------------------------------------------+
4# |                            pwg_rel_create.sh                             |
5# +--------------------------------------------------------------------------+
6# | author        : Pierrick LE GALL <http://le-gall.net/pierrick>           |
7# | project       : Piwigo                                                   |
8# +--------------------------------------------------------------------------+
9
10if [ $# -lt 2 ]
11then
12  echo
13  echo 'usage : '$(basename $0)' <tag> <version number>'
14  echo
15  exit 1
16fi
17
18tag=$1
19version=$2
20
21name=piwigo-$version
22
23cd /tmp
24
25if [ -e $version ]
26then
27  rm -rf $version
28fi
29mkdir $version
30cd $version
31
32svn export http://piwigo.org/svn/tags/$tag piwigo
33
34
35mkdir piwigo/_data
36touch piwigo/_data/dummy.txt
37
38mkdir piwigo/upload
39
40zip -r $name-nochmod.zip piwigo
41
42chmod -R a+w piwigo/local
43chmod a+w piwigo/_data
44chmod a+w piwigo/upload
45
46zip -r $name.zip piwigo
47
48echo cd /tmp/$version
Note: See TracBrowser for help on using the repository browser.