mirror of
https://github.com/dimitri/pgloader.git
synced 2026-05-04 18:36:12 +02:00
Fix *default-tmpdir* setting when using /tmp/.
This commit is contained in:
parent
f619054c79
commit
6d322fba7c
@ -6,7 +6,8 @@
|
||||
|
||||
(defparameter *default-tmpdir*
|
||||
(let* ((tmpdir (uiop:getenv "TMPDIR"))
|
||||
(tmpdir (or (and tmpdir (probe-file tmpdir)) "/tmp")))
|
||||
(tmpdir (or (and tmpdir (probe-file tmpdir)) "/tmp"))
|
||||
(tmpdir (fad:pathname-as-directory tmpdir)))
|
||||
(fad:pathname-as-directory (merge-pathnames "pgloader" tmpdir)))
|
||||
"Place where to fetch and expand archives on-disk.")
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user