3 # Author: Kevin Wentworth
4 # Author: Chris Koeritz
6 # checks the chosen site into the online git repository.
8 export WORKDIR="$( \cd "$(\dirname "$0")" && \pwd )" # obtain the script's working directory.
10 ############################
12 # main body of script.
14 # check for parameters.
15 app_dirname="$1"; shift
18 source "$WORKDIR/shared_site_mgr.sh"
22 check_apps_root "$BASE_APPLICATION_PATH"
24 # find proper webroot where the site will be initialized.
25 if [ -z "$app_dirname" ]; then
26 # no dir was passed, so guess it.
27 find_app_folder "$BASE_APPLICATION_PATH"
29 test_app_folder "$BASE_APPLICATION_PATH" "$app_dirname"
31 test_or_die "finding and testing app folder"
33 # where we expect to find our checkout folder underneath.
34 full_app_dir="$BASE_APPLICATION_PATH/$app_dirname"
36 # use our default values for the repository and theme if they're not provided.
37 if [ -z "$repo_name" ]; then
38 repo_name="$app_dirname"
41 echo "Repository: $repo_name"
44 # this should set the site_store_path variable if everything goes well.
45 update_repo "$full_app_dir" "$CHECKOUT_DIR_NAME" "$DEFAULT_REPOSITORY_ROOT" "$repo_name"
46 test_or_die "Updating the repository storage directory"
50 update_composer_repository "$site_store_path"
54 # now finally do the real check-in for our site.
56 pushd "$site_store_path" &>/dev/null
61 echo "Finished checking in the site at ${app_dirname}."