mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #1609 from p4p4j0hn/issue2158/create-parent-dirs
[Fixes 2158] Create parent dirs when provisioning install_dir
This commit is contained in:
commit
0c520e828e
1 changed files with 1 additions and 1 deletions
|
@ -623,7 +623,7 @@ class InstalldirAppResource(AppResource):
|
|||
)
|
||||
shutil.move(current_install_dir, self.dir)
|
||||
else:
|
||||
mkdir(self.dir)
|
||||
mkdir(self.dir, parents=True)
|
||||
|
||||
owner, owner_perm = self.owner.split(":")
|
||||
group, group_perm = self.group.split(":")
|
||||
|
|
Loading…
Add table
Reference in a new issue