From 3c4e64ed26d622f02929ec47eb2dc783af8d041e Mon Sep 17 00:00:00 2001 From: Mikael Sand Date: Sun, 30 Apr 2017 20:53:53 +0300 Subject: [PATCH] Fix spelling error in Windows-only code path (#545) Fix spelling error for uiop:make-pathname* key by changing :direction to :directory --- src/params.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/params.lisp b/src/params.lisp index f3a9f3b..9a52871 100644 --- a/src/params.lisp +++ b/src/params.lisp @@ -84,7 +84,7 @@ (defparameter *root-dir* #+unix (uiop:parse-native-namestring "/tmp/pgloader/") #-unix (uiop:merge-pathnames* - (uiop:make-pathname* :direction '(:relative "pgloader")) + (uiop:make-pathname* :directory '(:relative "pgloader")) (uiop:ensure-directory-pathname (getenv-default "Temp"))) "Top directory where to store all data logs and reject files.")