forked from platypush/platypush
[Fix] The base per-OS requirements filename is always lowercase.
This commit is contained in:
parent
e65eef34d3
commit
a909dc5f0f
1 changed files with 2 additions and 1 deletions
|
@ -364,7 +364,8 @@ class Dependencies:
|
||||||
|
|
||||||
return cls._parse_requirements_file(
|
return cls._parse_requirements_file(
|
||||||
os.path.join(
|
os.path.join(
|
||||||
cls._get_requirements_dir(), pkg_manager.value.default_os.name + '.txt'
|
cls._get_requirements_dir(),
|
||||||
|
pkg_manager.value.default_os.name.lower() + '.txt',
|
||||||
),
|
),
|
||||||
install_context,
|
install_context,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue