You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
973 B
Bash
29 lines
973 B
Bash
#!/usr/bin/env bash
|
|
########################################################################
|
|
# Copyright 2014 Lukas Bestle <project-projectr@lukasbestle.com>
|
|
# License MIT
|
|
########################################################################
|
|
# Clones the repository of a site from the server, runs the script
|
|
# .postdeploy.sh in the repository (if existing) and links the version
|
|
# as current.
|
|
#
|
|
# Usage: site_deploy <site> [<revision>]
|
|
#
|
|
# <site> Name of the site (directory in ~/web/sites/)
|
|
# <revision> SHA-1 commit hash of the revision to checkout
|
|
# Defaults to the latest commit on the set branch.
|
|
########################################################################
|
|
|
|
site="$1"
|
|
revision="$2"
|
|
|
|
if [[ -z "$site" ]]; then
|
|
# Print help
|
|
echo -e "\033[1mUsage:\033[0m \033[34msite_deploy\033[0m <site> [<revision>]"
|
|
exit 1
|
|
fi
|
|
|
|
# Delegate to project_deploy
|
|
project_deploy "$HOME/web/sites/$site" "$revision"
|
|
exit $?
|