Fix PR issues from @petropavel13

This commit is contained in:
Aleksandr Shushkov 2021-12-06 17:37:09 +03:00
parent 22abe5a792
commit 2ec3289b5b
1 changed files with 2 additions and 2 deletions

View File

@ -30,12 +30,12 @@ BUNDLE=${3:-".main"}
if ! [ -e ${LOCALIZATION_PATH} ]; then
echo "${LOCALIZATION_PATH} path does not exist. Add these folders and try again."
exit 1
exit ${EXIT_FAILURE}
fi
if ! [ -e "${STRINGS_FOLDER}" ]; then
echo "${STRINGS_FOLDER} path does not exist. Submodule with strings should be named common and contain strings folder."
exit 1
exit ${EXIT_FAILURE}
fi
if which php >/dev/null; then