fix test for the case that the addon dir is missing
This commit is contained in:
parent
f88ba77a5c
commit
d87e3ead7f
|
@ -216,8 +216,10 @@
|
||||||
(try-atomic-output (make-temporary-file))
|
(try-atomic-output (make-temporary-file))
|
||||||
;; The user's add-on directory should be writable and might be a
|
;; The user's add-on directory should be writable and might be a
|
||||||
;; different filesystem, so try that:
|
;; different filesystem, so try that:
|
||||||
(parameterize ([current-directory (find-system-path 'addon-dir)])
|
(let ([addon-dir (find-system-path 'addon-dir)])
|
||||||
(try-atomic-output (format "atomic-output-~a" (current-inexact-milliseconds))))
|
(make-directory* addon-dir)
|
||||||
|
(parameterize ([current-directory addon-dir])
|
||||||
|
(try-atomic-output (format "atomic-output-~a" (current-inexact-milliseconds)))))
|
||||||
|
|
||||||
;; ----------------------------------------
|
;; ----------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user