File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.1.1
2
+ ** Fixes**
3
+ - #111 fix: xtra_args and file not being parsed properly
4
+
1
5
## 3.1.0
2
6
** Features**
3
7
- #108 feat: Allow specifying version of Codecov uploader
Original file line number Diff line number Diff line change @@ -74,8 +74,8 @@ commands:
74
74
command : |
75
75
chmod +x $filename
76
76
args=()
77
- [[ -n "<< parameters.file >>" ]] && args+=( ' -f << parameters.file >>' )
78
- [[ -n "<< parameters.xtra_args >>" ]] && args+=( ' << parameters.xtra_args >>' )
77
+ [[ -n "<< parameters.file >>" ]] && args+=( " -f << parameters.file >>" )
78
+ [[ -n "<< parameters.xtra_args >>" ]] && args+=( " << parameters.xtra_args >>" )
79
79
curl -H "Accept: application/json" "https://uploader.codecov.io/${os}/<< parameters.version >>" | grep -o '\"version\":\"v[0-9\.\_]\+\"' | head -1
80
80
./$filename \
81
81
-Q "codecov-circleci-orb-3.1.0" \
You can’t perform that action at this time.
0 commit comments