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
582a21ae
Commit
582a21ae
authored
7 years ago
by
Guillaume Roguez
Browse files
Options
Downloads
Patches
Plain Diff
scripts: fix deploy
Fix platform detection conditionals Change-Id: I8e60a838b46c32683e3f23d7bcf0f00a2ff54750
parent
226bfc82
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/deploy-packages.sh
+3
-3
3 additions, 3 deletions
scripts/deploy-packages.sh
with
3 additions
and
3 deletions
scripts/deploy-packages.sh
+
3
−
3
View file @
582a21ae
...
...
@@ -202,14 +202,14 @@ function deploy()
function
package
()
{
if
[
${
DISTRIBUTION
:0:6
}
==
'
debian
'
||
${
DISTRIBUTION
:0:6
}
==
'
ubuntu
'
]
;
if
[
[
"
${
DISTRIBUTION
:0:6
}
"
==
"
debian
"
||
"
${
DISTRIBUTION
:0:6
}
"
==
"
ubuntu
"
]
]
;
then
package_deb
elif
[
${
DISTRIBUTION
:0:6
}
==
'
fedora
'
]
;
elif
[
[
"
${
DISTRIBUTION
:0:6
}
"
==
"
fedora
"
]
]
;
then
package_rpm
else
echo
"ERROR: Distribution '
${
DISTRIBUTION
' is unsupported"
echo
"ERROR: Distribution '
${
DISTRIBUTION
}
' is unsupported"
fi
}
...
...
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