Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2015-06-19 15:40:35 +0300
committerMichal Čihař <michal@cihar.com>2015-06-19 16:12:31 +0300
commit4a7778f56f4e34e723a4e168bf83c36562746c71 (patch)
tree375f4d86c448e4839c71517125b1fa297c7189fe /scripts
parent723d6934394296d549cc04c50f9d9c9f2e352822 (diff)
Generate sigs/sums for .xz archive as well
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/create-release.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index 1bf9c4baca..c0e533f086 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -232,7 +232,7 @@ rm -rf phpMyAdmin-${version}
# Signing of files with default GPG key
echo "* Signing files"
-for file in *.gz *.zip *.bz2 *.7z ; do
+for file in *.gz *.zip *.xz *.bz2 *.7z ; do
gpg --detach-sign --armor $file
md5sum $file > $file.md5
sha1sum $file > $file.sha1
@@ -245,7 +245,7 @@ echo ""
echo "Files:"
echo "------"
-ls -la *.gz *.zip *.bz2 *.7z
+ls -la *.gz *.zip *.xz *.bz2 *.7z
cd ..