We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca8835 commit d6787c7Copy full SHA for d6787c7
package.py
@@ -36,10 +36,12 @@
36
with open(platform_file) as f:
37
project_json["platforms"] = json.load(f)
38
39
- # Tools
40
- tools_file = f"{project}/{package}/tools.json"
41
- with open(tools_file) as f:
42
- project_json["tools"] = json.load(f)
+ # Tools
+ tools_file = f"{project}/{package}/tools.json"
+ with open(tools_file) as f:
+ tools = json.load(f)
43
+ for t in tools:
44
+ project_json["tools"].append(t)
45
46
index_json["packages"].append(project_json)
47
0 commit comments