Skip to content
Snippets Groups Projects
Commit 96432651 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

test: use pwd -P to resolve symlinks.

parent a3ecae82
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
(defun getcwd-from-run-program ()
(uiop:parse-native-namestring
(run-program
(os-cond ((os-unix-p) "pwd") ((os-windows-p) "echo %cd%"))
(os-cond ((os-unix-p) '("pwd" "-P")) ((os-windows-p) "echo %cd%"))
:output '(:string :stripped t))
:ensure-directory t))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment