Automating tar ball creation

This commit is contained in:
Daniel Kraus
2012-05-20 13:38:17 +02:00
parent 20e5a284cf
commit b36f5bb1dd
4 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*~
*#
*.swp
gpl-2.0.txt

View File

@ -2,3 +2,5 @@ LinkTitles
==========
MediaWiki extension that automatically adds links to words that match titles of existing pages.
For more information, see [[http://www.mediawiki.org/wiki/Extension:LinkTitles]]

7
release.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
# This script packs the relevant files of the LinkTitles
# extension into two archive files that contain the current
# git tag as the version number.
tar cvzf release/LinkTitles-`git describe --tags`.tar.gz gpl-*.txt LinkTitles.* --exclude '*~' --transform 's,^,LinkTitles/,'

Binary file not shown.