Skip to content

Commit f146baa

Browse files
committed
fix: correct download url for bundle
1 parent b2d8d00 commit f146baa

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

assets/metadata.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[
2-
{
3-
"Name": "prettier",
4-
"Description": "Format your code using Prettier",
5-
"Website": "https://github.com/gamemaker1/micro-plugin-prettier",
6-
"Tags": ["javascript", "node", "nodejs", "typescript", "formatting"],
7-
"Versions": [
8-
{
9-
"Version": "0.1.0",
10-
"Url": "https://github.com/gamemaker1/micro-plugin-prettier/releases/0.1.0/download/prettier.zip",
11-
"Require": { "micro": ">=1.0.3" }
12-
}
13-
]
14-
}
2+
{
3+
"Name": "prettier",
4+
"Description": "Format your code using Prettier",
5+
"Website": "https://github.com/gamemaker1/micro-plugin-prettier",
6+
"Tags": ["javascript", "node", "nodejs", "typescript", "formatting"],
7+
"Versions": [
8+
{
9+
"Version": "0.1.0",
10+
"Url": "https://github.com/gamemaker1/micro-plugin-prettier/releases/download/0.1.0/prettier.zip",
11+
"Require": { "micro": ">=1.0.3" }
12+
}
13+
]
14+
}
1515
]

scripts/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ sed -i "s/^VERSION = .*/VERSION = $version/" source/prettier.lua
3131
meta=`cat assets/metadata.json | jq ".[0].Versions += [
3232
{
3333
\"Version\": \"$version\",
34-
\"Url\": \"https://github.com/gamemaker1/micro-plugin-prettier/releases/$version/download/prettier.zip\",
34+
\"Url\": \"https://github.com/gamemaker1/micro-plugin-prettier/releases/download/$version/prettier.zip\",
3535
\"Require\": { \"micro\": \">=1.0.3\" }
3636
}
3737
]"`

0 commit comments

Comments
 (0)