Skip to content

Commit cefdce2

Browse files
committed
tools: fix usage of aliases.json
Load aliases.json from mbed-os rather than from a temporary directory.
1 parent 47ee967 commit cefdce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/arm_pack_manager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def aliases(self) :
357357
358358
"""
359359
if not self._aliases :
360-
with open(join(self.data_path, "aliases.json")) as i :
360+
with open(LocalPackAliases) as i :
361361
self._aliases = load(i)
362362
return self._aliases
363363

0 commit comments

Comments
 (0)