10 lines
365 B
Bash
10 lines
365 B
Bash
#!/bin/bash
|
|
|
|
# Make this be a script that will deploy your site. Assume it'll be run from the
|
|
# path of the built site, that the build succeeded, and that anything written to
|
|
# stdout will be displayed in a dialog.
|
|
|
|
# Example:
|
|
# rsync -r --delete . root@example.com:/var/www/html 2>&1 && echo "Site deployed!"
|
|
|
|
echo "Edit _scripts/deploy.sh to set up deploy script" |