diff options
author | antirez <antirez@gmail.com> | 2014-10-09 11:26:32 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-10-09 11:26:32 +0200 |
commit | da838544ae5f5e914cad85c1d6766ba79d71b32b (patch) | |
tree | 64bee8b8dbc0748863db149f7a5dd53f46e9f334 /utils/releasetools | |
parent | 5f6950caa893921e7cfe3d5b26109f880e060f8f (diff) | |
download | redis-da838544ae5f5e914cad85c1d6766ba79d71b32b.tar.gz |
02_upload_tarball.sh: let me exit before updating site.
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}" |