Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.recipe.build.saved
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
slapos.recipe.build.saved
Commits
3ffdd641
Commit
3ffdd641
authored
May 16, 2017
by
Vincent Pelletier
Committed by
Julien Muchembled
May 29, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gitclone: Assume unclean on uninstall when git-executable cannot be found
parent
34fc3e01
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
13 deletions
+19
-13
slapos/recipe/gitclone.py
slapos/recipe/gitclone.py
+19
-13
No files found.
slapos/recipe/gitclone.py
View file @
3ffdd641
...
...
@@ -293,20 +293,26 @@ def uninstall(name, options):
return
force_keep
=
False
if
options
.
get
(
'develop'
,
'yes'
).
lower
()
in
TRUE_VALUES
:
p
=
subprocess
.
Popen
([
options
.
get
(
'git-executable'
,
'git'
),
'status'
,
'--short'
],
cwd
=
options
[
'location'
],
stdout
=
subprocess
.
PIPE
)
if
p
.
communicate
()[
0
].
strip
():
print
"You have uncommited changes in %s. "
\
"This folder will be left as is."
%
options
[
'location'
]
force_keep
=
True
git_path
=
options
.
get
(
'git-executable'
,
'git'
)
if
not
os
.
path
.
isabs
(
git_path
)
or
os
.
path
.
exists
(
git_path
):
p
=
subprocess
.
Popen
([
git_path
,
'status'
,
'--short'
],
cwd
=
options
[
'location'
],
stdout
=
subprocess
.
PIPE
)
if
p
.
communicate
()[
0
].
strip
():
print
"You have uncommited changes in %s. "
\
"This folder will be left as is."
%
options
[
'location'
]
force_keep
=
True
p
=
subprocess
.
Popen
([
options
.
get
(
'git-executable'
,
'git'
),
'log'
,
'--branches'
,
'--not'
,
'--remotes'
],
cwd
=
options
[
'location'
],
stdout
=
subprocess
.
PIPE
)
if
p
.
communicate
()[
0
].
strip
():
print
"You have commits not pushed upstream in %s. "
\
p
=
subprocess
.
Popen
([
git_path
,
'log'
,
'--branches'
,
'--not'
,
'--remotes'
],
cwd
=
options
[
'location'
],
stdout
=
subprocess
.
PIPE
)
if
p
.
communicate
()[
0
].
strip
():
print
"You have commits not pushed upstream in %s. "
\
"This folder will be left as is."
%
options
[
'location'
]
force_keep
=
True
else
:
print
"Cannot check if there are unpushed/uncommitted changes in %s. "
\
"This folder will be left as is."
%
options
[
'location'
]
force_keep
=
True
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment