X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsite_avenger%2Fpowerup.sh;h=1c2b342562c00bf8968a8c01f138f22e2a372b86;hb=8064b3bda39bcb17d8550006a2e99cd9e5cfadee;hp=c2ed28d5afaa15f9bb87d552dab1dccab7567528;hpb=145a6090fd0b4472392593e47b29729525edd1e2;p=feisty_meow.git diff --git a/scripts/site_avenger/powerup.sh b/scripts/site_avenger/powerup.sh index c2ed28d5..1c2b3425 100644 --- a/scripts/site_avenger/powerup.sh +++ b/scripts/site_avenger/powerup.sh @@ -38,7 +38,6 @@ function print_instructions() echo "app dirname: The folder where the app will be stored." echo "repository: The name of the git repository (short version, no URL)." echo "theme name: The name to use for the cakephp theme." -# echo "user name: The name of the user to chown the checkout to." echo exit 0 } @@ -51,9 +50,6 @@ function print_instructions() app_dirname="$1"; shift repo_name="$1"; shift theme_name="$1"; shift -#user_name="$1"; shift - -#echo "*** user name is $user_name" if [ "$app_dirname" == "-help" -o "$app_dirname" == "--help" ]; then print_instructions @@ -78,10 +74,16 @@ full_app_dir="$BASE_APPLICATION_PATH/$app_dirname" # use our default values for the repository and theme if they're not provided. if [ -z "$repo_name" ]; then - repo_name="$app_dirname" + repo_name="$REPO_NAME" + if [ -z "$repo_name" ]; then + repo_name="$app_dirname" + fi fi if [ -z "$theme_name" ]; then - theme_name="$(capitalize_first_char ${app_dirname})" + theme_name="$THEME_NAME" + if [ -z "$theme_name" ]; then + theme_name="$(capitalize_first_char ${app_dirname})" + fi fi echo "Repository: $repo_name" @@ -107,15 +109,5 @@ create_site_links "$site_store_path" "$theme_name" sep -#if [ ! -z "$user_name" ]; then -# echo "Chowning the apps folder to be owned by: $user_name" -##hmmm: have to hope for now for standard group named after user -# chown -R "$user_name:$user_name" "$BASE_APPLICATION_PATH" -# test_or_die "Chowning $BASE_APPLICATION_PATH to be owned by $user_name" -#fi - -sep - - echo "Finished powering up the site in '${app_dirname}'."