Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xfce4-dev-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xfce
xfce4-dev-tools
Commits
6885d2a5
Commit
6885d2a5
authored
4 years ago
by
Gaël Bonithon
Browse files
Options
Downloads
Patches
Plain Diff
xfce-do-release: Check for `docker` installed
parent
4ffc172c
No related branches found
No related tags found
1 merge request
!48
xfce-do-release: Check for `docker` installed
Pipeline
#7126
passed
4 years ago
Stage: .pre
Stage: build
Stage: distcheck
Changes
1
Pipelines
5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
helpers/xfce-do-release
+4
-2
4 additions, 2 deletions
helpers/xfce-do-release
with
4 additions
and
2 deletions
helpers/xfce-do-release
+
4
−
2
View file @
6885d2a5
...
...
@@ -28,10 +28,12 @@ sanity_checks () {
git status
--untracked-files
=
no
-s
read
-n
1
-s
-p
"Do you really want to continue?"
fi
if
which xfce-build
>
/dev/null
;
then
if
!
which docker &>/dev/null
;
then
echo
"INFO: please install docker to support building in a clean environment."
elif
which xfce-build &>/dev/null
;
then
export
TAG
=
"xfce-build"
echo
"Working with the 'xfce-build' script and container."
elif
!
which xfce-test
>
/dev/null
;
then
elif
!
which xfce-test
&
>/dev/null
;
then
echo
"INFO: please install xfce-test to support building in a clean environment. See https://github.com/schuellerf/xfce-test"
else
images
=
$(
docker images|grep
-Po
"(?<=^schuellerf/xfce-test) +[^ ]+"
|tr
-d
' '
)
...
...
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