From 00bfb4d596be9576a5f7ebf18645ed52d256c69c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 2 Jul 2015 16:04:48 +0200 Subject: Remove no longer needed parameter from upload-release script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- scripts/create-release.sh | 4 ++-- scripts/upload-release | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) (limited to 'scripts') 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" -- cgit v1.2.3