Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
103
Merge Requests
103
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
009513b1
Commit
009513b1
authored
Jan 18, 2018
by
Rafael Monnerat
Browse files
Options
Browse Files
Download
Plain Diff
Update Release Candidate
parents
1187909a
f4996619
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
slapos/recipe/librecipe/generic.py
slapos/recipe/librecipe/generic.py
+3
-3
No files found.
slapos/recipe/librecipe/generic.py
View file @
009513b1
...
@@ -65,9 +65,9 @@ class GenericBaseRecipe(object):
...
@@ -65,9 +65,9 @@ class GenericBaseRecipe(object):
def
_ws
(
self
):
def
_ws
(
self
):
# getWorkingSet() is slow and it is not always needed.
# getWorkingSet() is slow and it is not always needed.
# So _ws should be a lazy attribute.
# So _ws should be a lazy attribute.
if
getattr
(
self
,
'_
_ws
'
,
None
)
is
None
:
if
getattr
(
self
,
'_
ws_internal
'
,
None
)
is
None
:
self
.
_
_ws
=
self
.
getWorkingSet
()
self
.
_
ws_internal
=
self
.
getWorkingSet
()
return
self
.
_
_ws
return
self
.
_
ws_internal
def
update
(
self
):
def
update
(
self
):
"""By default update method does the same thing than install"""
"""By default update method does the same thing than install"""
...
...
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