Skip to content

Commit

Permalink
merge r4668 from branch 2.0 to trunk
Browse files Browse the repository at this point in the history
feature 1375: remove version in Piwigo archive root directory


git-svn-id: http://piwigo.org/svn/trunk@4669 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
plegall committed Jan 12, 2010
1 parent bc10a3b commit 5095f26
Showing 1 changed file with 7 additions and 28 deletions.
35 changes: 7 additions & 28 deletions tools/pwg_rel_create.sh
Expand Up @@ -21,41 +21,20 @@ version=$2
name=piwigo-$version

cd /tmp
if [ -e $name ]
then
rm -rf $name
fi

if [ -e $version ]
then
rm -rf $version
fi
mkdir $version
cd $version

svn export http://piwigo.org/svn/tags/$tag piwigo

# cvs export -r $tag -d $version phpwebgallery
svn export http://piwigo.org/svn/tags/$tag $name
# creating config_database.inc.php empty and writeable
touch $name/include/config_database.inc.php
chmod a+w $name/include/config_database.inc.php
touch piwigo/include/config_database.inc.php
chmod a+w piwigo/include/config_database.inc.php

# find $name -name "*.php" \
# | xargs grep -l 'branch 1.7' \
# | xargs perl -pi -e "s/branch 1.7/${version}/g"
zip -r $name.zip piwigo

cd /tmp
for ext in zip # tar.gz tar.bz2
do
file=$version/$name.$ext
if [ -f $file ]
then
rm $name
fi
done


zip -r $version/$name.zip $name
# tar -czf $version/$name.tar.gz $name
# tar -cjf $version/$name.tar.bz2 $name

cd /tmp/$version
# md5sum p* >MD5SUMS
echo cd /tmp/$version

0 comments on commit 5095f26

Please sign in to comment.