aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/property/file.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/property/file.lisp b/src/property/file.lisp
index 59d8a55..88f76c0 100644
--- a/src/property/file.lisp
+++ b/src/property/file.lisp
@@ -101,4 +101,6 @@ Uses CL-PPCRE:REGEX-REPLACE, which see for the syntax of REPLACE."
"Ensure that a directory and its parents exists."
(:desc (strcat dir " exists"))
(:apply
- (mrun "mkdir" "-p" dir)))
+ (mrun "mkdir" "-p" dir)
+ ;; assume it was already there
+ :no-change))