You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
350 B
14 lines
350 B
#!/bin/bash
|
|
|
|
# Copy to Linode
|
|
|
|
set -euo pipefail
|
|
|
|
echo "**********************"
|
|
echo "* DEPLOYING Homepage *"
|
|
echo "**********************"
|
|
echo ""
|
|
echo "Copying files..."
|
|
sftp -i /home/adam/.ssh/id_rsa_linode -P 39793 -b sftp_upload.bat my_webapp@theadamcooper.com
|
|
echo "Done!"
|
|
echo "Deployment complete. Visit http://theadamcooper.com to confirm."
|
|
|