[parser] Fixed typos
This commit is contained in:
parent
2d8bebb9db
commit
5eb4577994
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ case "${1}" in
|
|||
cmd_deploy "${GIT_DIR}" ${@}
|
||||
EXIT=$?
|
||||
[[ ${EXIT} -eq 0 ]] && echo "Deployment completed successfully"
|
||||
[[ ${EXIT} -eq 1 ]] && echo "Deployment completed with erros"
|
||||
[[ ${EXIT} -eq 1 ]] && echo "Deployment completed with errors"
|
||||
[[ ${EXIT} -eq 3 ]] && echo "Database file non-existent"
|
||||
[[ ${EXIT} -eq 2 ]] && echo "Git directory not a valid git repository"
|
||||
;;
|
||||
|
@ -73,7 +73,7 @@ case "${1}" in
|
|||
cmd_update "${GIT_DIR}" ${@}
|
||||
EXIT=$?
|
||||
[[ ${EXIT} -eq 0 ]] && echo "Update completed successfully"
|
||||
[[ ${EXIT} -eq 1 ]] && echo "Update completed with erros"
|
||||
[[ ${EXIT} -eq 1 ]] && echo "Update completed with errors"
|
||||
[[ ${EXIT} -eq 3 ]] && echo "Database file non-existent"
|
||||
[[ ${EXIT} -eq 2 ]] && echo "Git directory not a valid git repository"
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue