Skip to content

Commit

Permalink
Auto-format code
Browse files Browse the repository at this point in the history
  • Loading branch information
ysthakur authored and github-actions[bot] committed Jul 24, 2023
1 parent 6dac9b1 commit 79f1093
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ tag_names() {

get_versions() {
grep -oE '"name": "[0-9]+\.[0-9]+-[0-9]+\.[0-9]+\.[0-9]+"' | # Must not be an M0 version
cut -d '"' -f 4 | # Extract the asset name
cut -d '"' -f 4 | # Extract the asset name
uniq
}

Expand All @@ -52,7 +52,7 @@ list_assets() {
local tag release_id
tag="$1"
release_id=$(gh_query "releases/tags/$tag" |
grep -oE '"id": [0-9]+' |
grep -oE '"id": [0-9]+' |
cut -d ':' -f 2 |
sed -E "s/(^ +)|\"//g" | # Trim
head -n 1)
Expand Down

0 comments on commit 79f1093

Please sign in to comment.