From a29acda9641ccc6d7bbc4a3f6dd75e9835f8e5d0 Mon Sep 17 00:00:00 2001 From: "Burger, Patrick" <Patrick.Burger@sport1.de> Date: Tue, 11 Jun 2019 14:42:25 +0200 Subject: [PATCH] fix wrong spelling 'cd iOS' --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4941358..9a5d01a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -345,7 +345,7 @@ test: if [ "$REACT_ENABLED" = true ] ; then # react use 2 different folder iOS/Android echo "Download for react..." - cd ios + cd iOS curl -so - https://gitlab.sport1dev.de/DevOps/autodevopsmobile/repository/master/archive.tar.bz2 | tar xj --strip-components=1 || true bundle install --path=../cache/bundler cd ../android @@ -377,29 +377,29 @@ test: } function ios_danger() { - [[ "$REACT_ENABLED" = true ]] && cd ios + [[ "$REACT_ENABLED" = true ]] && cd iOS echo "danger.import_dangerfile(path: 'danger/commit_messages')" > Dangerfile echo "danger.import_dangerfile(path: 'danger/device_grid')" >> Dangerfile bundle exec fastlane ios danger_report } function ios_deploy_live() { - [[ "$REACT_ENABLED" = true ]] && cd ios + [[ "$REACT_ENABLED" = true ]] && cd iOS bundle exec fastlane ios release } function ios_deploy_beta() { - [[ "$REACT_ENABLED" = true ]] && cd ios + [[ "$REACT_ENABLED" = true ]] && cd iOS bundle exec fastlane ios beta } function ios_deploy_review() { - [[ "$REACT_ENABLED" = true ]] && cd ios + [[ "$REACT_ENABLED" = true ]] && cd iOS bundle exec fastlane ios review } function ios_test() { - [[ "$REACT_ENABLED" = true ]] && cd ios + [[ "$REACT_ENABLED" = true ]] && cd iOS bundle exec fastlane ios test } -- GitLab