9 lines
229 B
Bash
Executable file
9 lines
229 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
vendor/bin/sculpin generate --env prod
|
|
rsync -uvrP static/ output_prod "$@"
|
|
rsync -uvrP output_prod/ nixedo.oliverdavies.uk:/var/www/vhosts/website-sculpin "$@"
|