Skip to content

Commit

Permalink
fixes #1204; use splitWhitespace to split tags (#1205)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout committed Apr 4, 2024
1 parent 39b61c5 commit 75c88fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nimblepkg/publish.nim
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ proc editJson(p: PackageInfo; url, tags, downloadMethod: string) =
"name": p.basicInfo.name,
"url": url,
"method": downloadMethod,
"tags": tags.split(),
"tags": tags.splitWhitespace(),
"description": p.description,
"license": p.license,
"web": url
Expand Down

0 comments on commit 75c88fe

Please sign in to comment.