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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jean-Paul Smets
slapos
Commits
66e1e032
Commit
66e1e032
authored
Mar 12, 2015
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
recipe.mkdirectory: fix error message and ignore null path
parent
a3d83b64
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
slapos/recipe/mkdirectory.py
slapos/recipe/mkdirectory.py
+2
-4
No files found.
slapos/recipe/mkdirectory.py
View file @
66e1e032
...
...
@@ -36,9 +36,7 @@ class Recipe(GenericBaseRecipe):
self
.
mode
=
int
(
self
.
directory
.
pop
(
'mode'
,
'700'
),
8
)
def
install
(
self
):
for
path
in
sorted
(
self
.
directory
.
values
()):
if
not
os
.
path
.
exists
(
path
):
for
path
in
sorted
(
self
.
directory
.
iter
values
()):
if
path
and
not
os
.
path
.
isdir
(
path
):
os
.
makedirs
(
path
,
self
.
mode
)
elif
not
os
.
path
.
isdir
(
path
):
raise
OSError
(
"%s path exits, but it's not a directory."
)
return
[]
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