Skip to content

Commit b95c45f

Browse files
authored
[semver:patch] Update bash curling best practices and bump to 1.1.6 (#81)
* [semver:patch] Update bash curling best practices and bump to 1.1.6 * Update CHANGELOG
1 parent 76e9fbe commit b95c45f

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.1.6
2+
**Fixes**
3+
- #81 Update bash script with best practices
4+
- #82 Reduce the code in the orb to DRY
5+
16
## 1.1.5
27
**Fixes**
38
- #78 Update validation regex and add shasum flexibility

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# codecov-circleci-orb
22

3-
## Latest version 1.1.4
3+
## Latest version 1.1.6
44

55
[![codecov.io](https://codecov.io/github/codecov/codecov-circleci-orb/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-circleci-orb)
66
[![Circle CI](https://circleci.com/gh/codecov/codecov-circleci-orb.png?style=badge)](https://circleci.com/gh/codecov/codecov-circleci-orb)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codecov-circleci-orb",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "Codecov CircleCI Orb",
55
"main": "index.js",
66
"devDependencies": {

src/@orb.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ commands:
4040
steps:
4141
- run:
4242
name: Download Codecov Bash Uploader
43-
command: curl -s << parameters.url >> > codecov
43+
command: curl -fLso codecov << parameters.url >>
4444
when: << parameters.when >>
4545
- when:
4646
condition: << parameters.validate_url >>
@@ -52,7 +52,7 @@ commands:
5252
for i in 1 256 512
5353
do
5454
shasum -a $i -c --ignore-missing <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM) ||
55-
shasum -a $i -c <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM)
55+
shasum -a $i -c <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM | grep -w "codecov")
5656
done
5757
- run:
5858
name: Upload Coverage Results

0 commit comments

Comments
 (0)