Skip to content

Commit

Permalink
Fix formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
raimon49 committed Sep 23, 2023
1 parent c438b8b commit d6663af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@ list_all_versions() {
}

numeric_version() {
echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }';
echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }'
}


download_release() {
local version filename url
version="$1"
Expand Down

0 comments on commit d6663af

Please sign in to comment.