fix errors during make init call

This commit is contained in:
Ivan Smolin 2024-01-18 09:54:51 +03:00
parent 5be3987ea3
commit 434c4f4e6a
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ init:
bundle install
$(call gen)
xcodegen
$(call install_pods)

View File

@ -126,7 +126,7 @@ is_api_spec_under_source_control()
IS_UNDER_SOURCE_CONTROL_CHECK=`git -C ${API_SPEC_DIR} rev-parse --is-inside-work-tree 2>/dev/null`
fi
if [ ${IS_UNDER_SOURCE_CONTROL_CHECK} = "true" ]; then
if [ "${IS_UNDER_SOURCE_CONTROL_CHECK}" = "true" ]; then
echo ${TRUE}
else
echo ${FALSE}