From 84f0ab5356eb54d64cf0aadd1acef1acc1a770f4 Mon Sep 17 00:00:00 2001 From: Michael Camilleri Date: Wed, 10 Mar 2021 17:11:12 +0900 Subject: [PATCH] Fix argument passing to os/realpath in jpm --- jpm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jpm b/jpm index 320393e7..31090499 100755 --- a/jpm +++ b/jpm @@ -44,7 +44,7 @@ (defn- try-real [path] "If os/realpath fails just use normal path." - (try (os/realpath) ([_] path))) + (try (os/realpath path) ([_] path))) (defn- install-paths [] {:headerpath (try-real (string exe-dir "/../include/janet"))