File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- CC_WRAPPER_VERSION=" 0.0.19 "
2
+ CC_WRAPPER_VERSION=" 0.0.20 "
3
3
say () {
4
4
echo -e " $1 "
5
5
}
@@ -40,7 +40,6 @@ say " _____ _
40
40
"
41
41
CC_VERSION=" ${CC_VERSION:- latest} "
42
42
CC_FAIL_ON_ERROR=" ${CC_FAIL_ON_ERROR:- false} "
43
- CC_OS=" linux"
44
43
if [ -n " $CC_BINARY " ];
45
44
then
46
45
if [ -f " $CC_BINARY " ];
55
54
say " $g ==>$x Overridden OS: $b ${CC_OS} $x "
56
55
export cc_os=${CC_OS}
57
56
else
57
+ CC_OS=" linux"
58
58
family=$( uname -s | tr ' [:upper:]' ' [:lower:]' )
59
59
cc_os=" windows"
60
60
[[ $family == " darwin" ]] && cc_os=" macos"
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- CODECOV_OS=" linux"
4
-
5
3
if [ -n " $CODECOV_BINARY " ];
6
4
then
7
5
if [ -f " $CODECOV_BINARY " ];
16
14
say " $g ==>$x Overridden OS: $b ${CODECOV_OS} $x "
17
15
export codecov_os=${CODECOV_OS}
18
16
else
17
+ CODECOV_OS=" linux"
19
18
family=$( uname -s | tr ' [:upper:]' ' [:lower:]' )
20
19
codecov_os=" windows"
21
20
[[ $family == " darwin" ]] && codecov_os=" macos"
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- CODECOV_WRAPPER_VERSION=" 0.0.19 "
2
+ CODECOV_WRAPPER_VERSION=" 0.0.20 "
You can’t perform that action at this time.
0 commit comments