Merge pull request 'fix errors during make init call' (#15) from feature/make_init_fixes into master
Reviewed-on: #15
This commit is contained in:
commit
e54d505272
|
|
@ -44,7 +44,7 @@ init:
|
|||
|
||||
bundle install
|
||||
|
||||
$(call gen)
|
||||
xcodegen
|
||||
|
||||
$(call install_pods)
|
||||
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue