Showing with 7 additions and 1 deletion.
  1. +6 −0 debian/changelog
  2. +1 −1 moulinette/utils/filesystem.py
@@ -1,3 +1,9 @@
moulinette (debian/2.6.1) stable; urgency=low

* [fix] Recursive mkdir was broken

-- ljf <ljf+yunohost@grimaud.me> Wed, 21 Jun 2017 17:53:31 -0400

moulinette (2.6.0) testing; urgency=low

# Improvements / fixes
@@ -31,7 +31,7 @@ def mkdir(path, mode=0777, parents=False, uid=None, gid=None, force=False):
# Create parents directories as needed
head, tail = os.path.split(path)
if not tail:
head, tail = path.split(head)
head, tail = os.path.split(head)
if head and tail and not os.path.exists(head):
try:
mkdir(head, mode, parents, uid, gid, force)