Skip to content
Snippets Groups Projects
Commit 46841cfd authored by Sébastien Blin's avatar Sébastien Blin
Browse files

make-ring: do default install if distribution not recognized

GitLab: #1127
Change-Id: I8190ea8b974a44b7851969cdb5d33bd32074ddd9
parent 23a25cba
No related branches found
No related tags found
No related merge requests found
......@@ -307,7 +307,7 @@ def run_dependencies(args):
sys.exit(1)
else:
print("Not yet implemented for current distribution (%s)" %
print("Not yet implemented for current distribution (%s). Please continue with the --install instruction. Note: You may need to install some dependencies manually." %
args.distribution)
sys.exit(1)
......@@ -507,10 +507,9 @@ def validate_args(parsed_args):
+ ZYPPER_BASED_DISTROS + FLATPAK_BASED_RUNTIMES
if parsed_args.distribution not in supported_distros:
print('Distribution \'{0}\' not supported.\nChoose one of: {1}'.format(
print('WARNING: Distribution \'{0}\' not supported.\nChoose one of: {1}'.format(
parsed_args.distribution, ', '.join(supported_distros)
), file=sys.stderr)
sys.exit(1)
# The Qt client support will be added incrementally.
if parsed_args.qt is not None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment