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:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/create-release.sh4
-rwxr-xr-xscripts/upload-release5
2 files changed, 4 insertions, 5 deletions
diff --git a/scripts/create-release.sh b/scripts/create-release.sh
index d4fd4f65a0..d2626ba218 100755
--- a/scripts/create-release.sh
+++ b/scripts/create-release.sh
@@ -289,9 +289,9 @@ Todo now:
2. prepare a release/phpMyAdmin-$version-notes.html explaining in short the goal of
this release and paste into it the ChangeLog for this release, followed
by the notes of all previous incremental versions (i.e. 4.4.9 through 4.4.0)
- 3. upload the files to SF, you can use scripts/upload-release, eg.:
+ 3. upload the files to our file server, use scripts/upload-release, eg.:
- ./scripts/upload-release \$USER $version release
+ ./scripts/upload-release $version release
4. add a news item to our website; a good idea is to include a link to the release notes such as https://www.phpmyadmin.net/files/4.4.10/
5. send a short mail (with list of major changes) to
phpmyadmin-devel@lists.sourceforge.net
diff --git a/scripts/upload-release b/scripts/upload-release
index 84a0dfa4af..e4a03787d0 100755
--- a/scripts/upload-release
+++ b/scripts/upload-release
@@ -4,12 +4,11 @@ set -e
set -u
if [ $# -lt 2 ] ; then
- echo 'Usage: upload-release USERNAME VERSION [DIR]'
+ echo 'Usage: upload-release VERSION [DIR]'
echo 'Must be called in directory with binaries or with path'
exit 1
fi
-USER=$1
-REL=$2
+REL=$1
if [ $# -gt 2 ] ; then
cd "$3"