Skip to content

Commit d2991f4

Browse files
authored
install-eaf.py: don't break in unsupported distribution when ignore_sys_deps (#858)
1 parent c03dfd5 commit d2991f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

install-eaf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ def get_distro():
200200
elif sys.platform == "linux":
201201
print("[EAF] Unsupported Linux distribution/package manager.")
202202
print(" Please see dependencies.json for list of dependencies.")
203-
sys.exit(1)
203+
if not (args.ignore_core_deps or args.ignore_sys_deps):
204+
sys.exit(1)
204205

205206
return distro
206207

0 commit comments

Comments
 (0)