Merge pull request 'fix errors during make init call' (#15) from feature/make_init_fixes into master

Reviewed-on: #15
This commit was merged in pull request #15.
This commit is contained in:
2024-01-18 14:09:47 +03:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ init:
bundle install
$(call gen)
xcodegen
$(call install_pods)
+1 -1
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}