File tree Expand file tree Collapse file tree 1 file changed +4
-17
lines changed Expand file tree Collapse file tree 1 file changed +4
-17
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,8 @@ function usage() {
23
23
echo " -n --dry-run"
24
24
echo " Do a dry run."
25
25
echo " "
26
- if [[ " $( uname -s) " == " Linux" ]] ; then
27
- echo " -t --test"
28
- echo " Run tests."
29
- echo " "
30
- fi
31
- echo " -nt --no-test"
32
- echo " Don't run tests."
26
+ echo " -t --test"
27
+ echo " Run tests."
33
28
echo " "
34
29
}
35
30
@@ -41,7 +36,7 @@ DRY_RUN=
41
36
BUNDLE_PREFIX=
42
37
case $( uname -s) in
43
38
Darwin)
44
- SWIFT_PACKAGE=buildbot_osx_package
39
+ SWIFT_PACKAGE=buildbot_osx_package,no_test
45
40
;;
46
41
Linux)
47
42
SWIFT_PACKAGE=buildbot_linux,no_test
@@ -63,15 +58,7 @@ while [ $# -ne 0 ]; do
63
58
if [ " $( uname -s) " == " Linux" ]; then
64
59
SWIFT_PACKAGE=buildbot_linux
65
60
else
66
- echo " --test is not supported on \" $( uname -s) \" . See --help"
67
- exit 1
68
- fi
69
- ;;
70
- -nt|--no-test)
71
- if [ " $( uname -s) " == " Linux" ]; then
72
- SWIFT_PACKAGE=buildbot_linux,no_test
73
- else
74
- SWIFT_PACKAGE=buildbot_osx_package,no_test
61
+ SWIFT_PACKAGE=buildbot_osx_package
75
62
fi
76
63
;;
77
64
-h|--help)
You can’t perform that action at this time.
0 commit comments