Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
savoirfairelinux
jami-project
Commits
46841cfd
Commit
46841cfd
authored
4 years ago
by
Sébastien Blin
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
make-ring.py
+2
-3
2 additions, 3 deletions
make-ring.py
with
2 additions
and
3 deletions
make-ring.py
+
2
−
3
View file @
46841cfd
...
...
@@ -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.
\n
Choose one of: {1}
'
.
format
(
print
(
'
WARNING:
Distribution
\'
{0}
\'
not supported.
\n
Choose 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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment