diff options
Diffstat (limited to 'utils/releasetools')
-rwxr-xr-x | utils/releasetools/02_upload_tarball.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/releasetools/02_upload_tarball.sh b/utils/releasetools/02_upload_tarball.sh index 560b036eb..ed7065388 100755 --- a/utils/releasetools/02_upload_tarball.sh +++ b/utils/releasetools/02_upload_tarball.sh @@ -1,5 +1,6 @@ #!/bin/bash echo "Uploading..." scp /tmp/redis-${1}.tar.gz antirez@antirez.com:/var/virtual/download.redis.io/httpdocs/releases/ -echo "Updating web site..." +echo "Updating web site... (press any key if it is a stable release, or Ctrl+C)" +read x ssh antirez@antirez.com "cd /var/virtual/download.redis.io/httpdocs; ./update.sh ${1}" |