Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AvdLee committed Jan 30, 2020
1 parent 86aa9e7 commit 607b115
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
10 changes: 9 additions & 1 deletion Bitrise/tag_releasing_bitrise.yml
Expand Up @@ -12,8 +12,16 @@ workflows:
- script:
inputs:
- content: |-
#!/usr/bin/env bash
set -ex
if [ ! -d "Submodules/WeTransfer-iOS-CI" ] ; then
# file does not exist - simply exit with success
exit 0
fi
# Get the latest master branch for WeTransfer-iOS-CI if the submodule exists
[ -d "Submodules/WeTransfer-iOS-CI" ] && git submodule update --remote --no-fetch Submodules/WeTransfer-iOS-CI
git submodule update --remote --no-fetch Submodules/WeTransfer-iOS-CI
title: Update WeTransfer-iOS-CI submodule
- bitrise-step-install-bundler: {}
- script:
Expand Down
10 changes: 9 additions & 1 deletion Bitrise/testing_bitrise.yml
Expand Up @@ -12,8 +12,16 @@ workflows:
- script:
inputs:
- content: |-
#!/usr/bin/env bash
set -ex
if [ ! -d "Submodules/WeTransfer-iOS-CI" ] ; then
# file does not exist - simply exit with success
exit 0
fi
# Get the latest master branch for WeTransfer-iOS-CI if the submodule exists
[ -d "Submodules/WeTransfer-iOS-CI" ] && git submodule update --remote --no-fetch Submodules/WeTransfer-iOS-CI
git submodule update --remote --no-fetch Submodules/WeTransfer-iOS-CI
title: Update WeTransfer-iOS-CI submodule
- bitrise-step-install-bundler: {}
- script:
Expand Down

0 comments on commit 607b115

Please sign in to comment.