Question about use of uiop:launch-program
rpgoldman opened this issue · 1 comments
rpgoldman commented
Lines 17 to 34 in 601ed20
Is there some reason for using the shell + exec
instead of just using the binary directly? This would be something like the following:
(uiop:launch-program
(list command
;; Calculate full path to python script
(namestring (merge-pathnames #p"py4cl.py" py4cl/config:*base-directory*))
:input :stream :output :stream))
I would guess that using the shell might introduce some oddities depending on the user's configuration.
Thanks!
digikar99 commented
I ended up removing exec
in this context in py4cl2
very early on, so I too am curious about if it was important.