mirror of
https://github.com/zaphar/jeremy.marzhillstudios.com.git
synced 2025-07-21 19:29:48 -04:00
25 lines
719 B
Bash
25 lines
719 B
Bash
|
#!/bin/bash
|
||
|
#===============================================================================
|
||
|
#
|
||
|
# FILE: submit.sh
|
||
|
#
|
||
|
# USAGE: ./submit.sh
|
||
|
#
|
||
|
# DESCRIPTION: Sync the webpage with the remote server to publish to
|
||
|
#
|
||
|
# OPTIONS: ---
|
||
|
# REQUIREMENTS: ---
|
||
|
# BUGS: ---
|
||
|
# NOTES: ---
|
||
|
# AUTHOR: Jeremy Wall (jw), jeremy@marzhillstudios.com
|
||
|
# COMPANY: Marzhillstudios.com
|
||
|
# VERSION: 1.0
|
||
|
# CREATED: 07/09/2010 21:51:59 CDT
|
||
|
# REVISION: ---
|
||
|
#===============================================================================
|
||
|
|
||
|
wd=$(dirname $0)
|
||
|
|
||
|
rsync --rsh=ssh --delete --checksum --recursive $* \
|
||
|
$wd/generated/* zaphar.xen.prgmr.com:/home/jwall/www
|