Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Dumb down the Bash
Browse files Browse the repository at this point in the history
  • Loading branch information
garious committed Oct 3, 2018
1 parent 45dc9ab commit 43dc1d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/test-nightly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ maybe_cargo_install() {
maybe_cargo_install cov

if [[ ! -f ./grcov ]]; then
uname=$(uname)
uname_m=$(uname -m)
name=grcov-${uname//A-Z/a-z}-${uname_m//A-Z/a-z}
uname=$(uname | tr '[:upper:]' '[:lower:]')
uname_m=$(uname -m | tr '[:upper:]' '[:lower:]')
name=grcov-${uname}-${uname_m}
_ wget "https://github.com/mozilla/grcov/releases/download/v0.2.3/${name}"
_ tar -xzf "${name}"
fi
Expand Down

0 comments on commit 43dc1d7

Please sign in to comment.