Skip to content

Commit

Permalink
fix(docs): yarn_urls should be string_list, not string
Browse files Browse the repository at this point in the history
  • Loading branch information
yujunz authored and alexeagle committed Mar 31, 2020
1 parent cd8520d commit 3357c08
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/node/node_repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ node_repositories(
"1.12.1": ("yarn-v1.12.1.tar.gz", "yarn-v1.12.1", "09bea8f4ec41e9079fa03093d3b2db7ac5c5331852236d63815f8df42b3ba88d"),
},
yarn_version = "1.12.1",
yarn_urls = "https://github.com/yarnpkg/yarn/releases/download/v{version}/{filename}",
yarn_urls = [
"https://github.com/yarnpkg/yarn/releases/download/v{version}/{filename}",
],
)
```
Expand Down

0 comments on commit 3357c08

Please sign in to comment.