Skip to content

Commit a69c788

Browse files
committed
fix haxelib json generated license value
1 parent 420adb6 commit a69c788

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

haxelib.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hxmake",
3-
"license": "https://github.com/eliasku/hxmake",
3+
"license": "MIT",
44
"tags": [
55
"haxe",
66
"make",
@@ -17,5 +17,6 @@
1717
"contributors": [
1818
"eliasku"
1919
],
20-
"version": "0.0.1"
20+
"version": "0.0.1",
21+
"url": "https://github.com/eliasku/hxmake"
2122
}

run.n

185 Bytes
Binary file not shown.

src/hxmake/haxelib/LibraryConfig.hx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class LibraryConfig {
3131
}
3232

3333
if(url != null) {
34-
data.license = url;
34+
data.url = url;
3535
}
3636

3737
if(tags.length > 0) {

0 commit comments

Comments
 (0)