diff --git a/babs.sh b/babs.sh index 13f1c48..023d5e6 100755 --- a/babs.sh +++ b/babs.sh @@ -208,9 +208,9 @@ func_handle_user_command_args() { -rs | --reset) local CUR_DIR=$(pwd) func_is_git_configured - func_babs_handle_checkout_and_apply_patches ${ARG__USER_CMD_PARAM1} #From babs_handler.sh - cd $CUR_DIR func_babs_handle_build_direcory_clean ${ARG__USER_CMD_PARAM1} #From repo_management.sh + cd $CUR_DIR + func_babs_handle_checkout_and_apply_patches ${ARG__USER_CMD_PARAM1} #From babs_handler.sh exit 0 ;; -rb | --rebuild) @@ -224,10 +224,10 @@ func_handle_user_command_args() { -rsb | --reset_build) local CUR_DIR=$(pwd) func_is_git_configured - func_babs_handle_checkout_and_apply_patches ${ARG__USER_CMD_PARAM1} #From babs_handler.sh - cd $CUR_DIR func_babs_handle_build_direcory_clean ${ARG__USER_CMD_PARAM1} #From repo_management.sh cd $CUR_DIR + func_babs_handle_checkout_and_apply_patches ${ARG__USER_CMD_PARAM1} #From babs_handler.sh + cd $CUR_DIR func_babs_handle_build ${ARG__USER_CMD_PARAM1} #From babs_handler.sh exit 0 ;; diff --git a/build/build_handler.sh b/build/build_handler.sh index 8e5ce18..9557070 100644 --- a/build/build_handler.sh +++ b/build/build_handler.sh @@ -72,7 +72,7 @@ func_babs_handle_build_direcory_clean() { fi res=$? if [[ $res -eq 0 ]]; then - echo -e "\Build directories cleaned succesfully for all core applications." + echo -e "Build directories cleaned succesfully for all core applications." echo "" else echo -e "Failed to clean build directories for core applications."