Skip to content

Commit 6c50ef0

Browse files
committed
Update Travis-CI configuration to use macOS name.
1 parent 5031a64 commit 6c50ef0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
- LANG=en_US.UTF-8
1111
matrix:
1212
- TEST_TYPE=iOS
13-
- TEST_TYPE=OSX
13+
- TEST_TYPE=macOS
1414
- TEST_TYPE=Deployment
1515
- TEST_TYPE=Starters
1616
- TEST_TYPE=CocoaPods
@@ -29,10 +29,10 @@ install:
2929
fi
3030
script:
3131
- |
32-
TEST_TYPE=$(echo "$TEST_TYPE" | tr '[:upper:]' '[:lower:]')
33-
bundle exec rake test:$TEST_TYPE
32+
RAKE_TASK_NAME=$(echo "$TEST_TYPE" | tr '[:upper:]' '[:lower:]')
33+
bundle exec rake test:$RAKE_TASK_NAME
3434
after_success:
3535
- |
36-
if [ "$TEST_TYPE" = "ios" ] || [ "$TEST_TYPE" = "osx" ]; then
36+
if [ "$TEST_TYPE" = iOS ] || [ "$TEST_TYPE" = macOS ]; then
3737
bash <(curl -s https://codecov.io/bash)
38-
fi
38+
fi

0 commit comments

Comments
 (0)