Skip to content

Commit 85a18d7

Browse files
committed
Use *DEFAULT-PATHNAME-DEFAULTS* as the :directory for sb-ext:run-program in RUN
This is to maybe head off thread cwd problems.
1 parent 0d5a767 commit 85a18d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

commands.lisp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
(process (run-program command arguments
3535
:search t
3636
:wait t
37-
:output *command-output*)))
37+
:output *command-output*
38+
:directory *default-pathname-defaults*)))
3839
(unwind-protect
3940
(let ((code (process-exit-code process)))
4041
(if (zerop code)

0 commit comments

Comments
 (0)