branch: externals/plz commit 56b930559c5e9e20e872cc0090de8622b6816bc8 Author: Joseph Turner <jos...@breatheoutbreathe.in> Commit: Adam Porter <a...@alphapapa.net>
Fix: (plz) Create empty directories when outputting to a file --- plz.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plz.el b/plz.el index c3316dd481..aff43bdd64 100644 --- a/plz.el +++ b/plz.el @@ -431,7 +431,8 @@ into the process buffer. (curl-config-header-args (cl-loop for (key . value) in headers collect (cons "--header" (format "%s: %s" key value)))) (curl-config-args (append curl-config-header-args - (list (cons "--url" url)) + (list (cons "--url" url) + (cons "--create-dirs" "")) (when connect-timeout (list (cons "--connect-timeout" (number-to-string connect-timeout))))