]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/io/launcher/unix/unix.factor
(normalize-path) -> absolute-path, canonicalize-path -> resolve-symlinks
[factor.git] / basis / io / launcher / unix / unix.factor
index 5424ab423823c3d4bc0e88670cfd66a9673c66fb..a9e3324986d041ad5de58cd755af81b0b69efc11 100644 (file)
@@ -71,7 +71,7 @@ IN: io.launcher.unix
 : spawn-process ( process -- * )
     [ setup-priority ] [ 250 _exit ] recover
     [ setup-redirection ] [ 251 _exit ] recover
-    [ current-directory get (normalize-path) cd ] [ 252 _exit ] recover
+    [ current-directory get absolute-path cd ] [ 252 _exit ] recover
     [ setup-environment ] [ 253 _exit ] recover
     [ get-arguments exec-args-with-path ] [ 254 _exit ] recover
     255 _exit ;