Skip to content

Commit d6787c7

Browse files
author
Spacehuhn
committed
Added missing tools
1 parent dca8835 commit d6787c7

File tree

2 files changed

+377
-4
lines changed

2 files changed

+377
-4
lines changed

package.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,12 @@
3636
with open(platform_file) as f:
3737
project_json["platforms"] = json.load(f)
3838

39-
# Tools
40-
tools_file = f"{project}/{package}/tools.json"
41-
with open(tools_file) as f:
42-
project_json["tools"] = json.load(f)
39+
# Tools
40+
tools_file = f"{project}/{package}/tools.json"
41+
with open(tools_file) as f:
42+
tools = json.load(f)
43+
for t in tools:
44+
project_json["tools"].append(t)
4345

4446
index_json["packages"].append(project_json)
4547

0 commit comments

Comments
 (0)