Skip to content

Commit 9e71e30

Browse files
authored
Merge pull request #467 from jberkel/reinstate-scheme-default
Makefile: re-add scheme default
2 parents 62ea985 + 0de2602 commit 9e71e30

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
BUILD_TOOL = xcodebuild
2+
BUILD_SCHEME = SQLite Mac
23
ifeq ($(BUILD_SCHEME),SQLite iOS)
34
BUILD_ARGUMENTS = -scheme "$(BUILD_SCHEME)" -sdk iphonesimulator
45
else

run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -ev
33
if [ -n "$BUILD_SCHEME" ]; then
4-
make test
4+
make test BUILD_SCHEME="$BUILD_SCHEME"
55
elif [ -n "$VALIDATOR_SUBSPEC" ]; then
66
cd CocoaPodsTests && make test
7-
fi
7+
fi

0 commit comments

Comments
 (0)