-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update rsync command in correct place
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -708,13 +708,13 @@ | |
# in a `nikola deploy` command as you like. | ||
# DEPLOY_COMMANDS = { | ||
# 'default': [ | ||
# "rsync -ravO --delete output/ [email protected]:/srv/www/site", | ||
# "rsync -rav --delete output/ [email protected]:/srv/www/site", | ||
# ] | ||
# } | ||
|
||
DEPLOY_COMMANDS = { | ||
'default': [ | ||
"rsync -avP --delete-after --exclude-from=rsync-exclude.txt output/ wxpython-site:{}/htdocs".format(SITE_DIR)], | ||
"rsync -avPO --delete-after --exclude-from=rsync-exclude.txt output/ wxpython-site:{}/htdocs".format(SITE_DIR)], | ||
} | ||
|
||
# github_deploy configuration | ||
|