Accept mode as argument in `mkdir' action

This commit is contained in:
Thibault Jouan
2014-04-25 00:28:20 +00:00
parent 5cb6296057
commit 94f6bbb4aa
6 changed files with 68 additions and 7 deletions

View File

@@ -20,8 +20,9 @@ module Producer
false
end
def mkdir(path)
sftp.mkdir! path
def mkdir(path, mode = nil)
options = mode ? { permissions: mode } : {}
sftp.mkdir! path, options
end
def file_read(path)