Skip to content

Commit

Permalink
fix error about --no-progress-meter not being applicable
Browse files Browse the repository at this point in the history
  • Loading branch information
technicalpickles committed Sep 10, 2021
1 parent 32d9921 commit 74f5486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/yvm.fish
Expand Up @@ -68,7 +68,7 @@ function _yvm_get_releases
# because users saw an error message that didn't tell them anything.
# Using a temporary file as an intermediary and letting curl output its
# progress and errors is much easier.
curl --no-progress-meter $yvm_fish_yarn_releases_url -o $releases_temp || return 1
curl -s $yvm_fish_yarn_releases_url -o $releases_temp || return 1

cat $releases_temp\
| tr ',' '\n'\
Expand Down

0 comments on commit 74f5486

Please sign in to comment.