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-07-02 17:04:48 +0300
committerMichal Čihař <michal@cihar.com>2015-07-02 17:18:17 +0300
commit00bfb4d596be9576a5f7ebf18645ed52d256c69c (patch)
tree359a55dafd6e16f59d4a1a510fbc9a1c23722d5c /scripts
parent288841c05c452a5e1ab2375c7d492b294bd00b2c (diff)
Remove no longer needed parameter from upload-release script
Signed-off-by: Michal Čihař <michal@cihar.com>
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"