Skip to content

Commit

Permalink
Add deployment and tagging to package creation, and set version to 0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
henrik242 authored and Henrik Brautaset Aronsen committed May 12, 2009
1 parent 310daeb commit b1bb101
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions create-package.sh
Expand Up @@ -30,3 +30,22 @@ mkdir $FOLDER
cp src/* $FOLDER/
rm $FOLDER/*~
zip -r $ZIPFILE $FOLDER && rm -r $FOLDER && echo && echo Created $ZIPFILE

echo
echo -n "Upload $ZIPFILE to sourceforge (y/N)? "
read i
if [ "$i" = "y" ]; then
scp $ZIPFILE mingoto@frs.sourceforge.net:uploads
fi

RELEASE=`echo RELEASE_$VERSION | sed 's/\./_/'`
echo
echo -n "Tag release as $RELEASE to sourceforge (y/N)? "
read i
if [ "$i" = "y" ]; then
svn copy https://mingoto@musicbrowser.svn.sourceforge.net/svnroot/musicbrowser/{trunk,tags/$RELEASE}
fi

echo
echo "Last but not least, please update the web site by issuing:"
echo ssh -t mingoto,musicbrowser@shell.sourceforge.net create
2 changes: 1 addition & 1 deletion src/musicbrowser.php
Expand Up @@ -29,7 +29,7 @@
define('XBMC', 'xbmc');
define('XSPF', 'xspf');

define('VERSION', '0.24-svn');
define('VERSION', '0.24');

class MusicBrowser {

Expand Down

0 comments on commit b1bb101

Please sign in to comment.