mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 16:18:28 -05:00
6 lines
244 B
Bash
Executable File
6 lines
244 B
Bash
Executable File
#!/bin/bash
|
|
echo "Uploading..."
|
|
scp /tmp/redis-${1}.tar.gz antirez@antirez.com:/var/virtual/download.redis.io/httpdocs/releases/
|
|
echo "Updating web site..."
|
|
ssh antirez@antirez.com "cd /var/virtual/download.redis.io/httpdocs; ./update.sh ${1}"
|