Skip to content

Commit c248773

Browse files
committed
Implemented fixes provided by @timshadel
1 parent e926eb1 commit c248773

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,7 @@ before_install:
2525
- brew update
2626
- brew outdated carthage || brew upgrade carthage
2727
script:
28+
# Workaround for Xcode 10.2/tvOS 9.1 bug
29+
# See https://stackoverflow.com/questions/55389080/xcode-10-2-failed-to-run-app-on-simulator-with-ios-10
30+
- sudo mkdir /Library/Developer/CoreSimulator/Profiles/Runtimes/tvOS\ 9.1.simruntime/Contents/Resources/RuntimeRoot/usr/lib/swift
2831
- ./run-tests.sh

Sources/SQLite/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.11.4</string>
18+
<string>0.11.6</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/CocoaPods/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
XCPRETTY := $(shell command -v xcpretty)
2+
13
test: install repo_update
24
@set -e; \
35
for test in *_test.rb; do \
4-
bundle exec ./$$test; \
6+
bundle exec ./$$test | $(XCPRETTY) -C; \
57
done
68

79
repo_update:

0 commit comments

Comments
 (0)