From 4aa9af028c0e9f35f4bdf8485a17385586e03dc5 Mon Sep 17 00:00:00 2001 From: Lovro Lugovic Date: Thu, 18 Oct 2018 11:34:37 +0200 Subject: [PATCH] Fix the creation of a symlink in Quicklisp's `local-projects` directory Reviewers: teon.banek, mtomic Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1677 --- init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init b/init index eac27bc7a..822ae948b 100755 --- a/init +++ b/init @@ -128,7 +128,7 @@ if [[ ! -f "${quicklisp_install_dir}/setup.lisp" ]]; then " | sbcl --script || exit 1 rm -rf quicklisp.lisp || exit 1 fi -ln -fs "$DIR/src/lisp" "${quicklisp_install_dir}/local-projects/lcp" +ln -Tfs "$DIR/src/lisp" "${quicklisp_install_dir}/local-projects/lcp" # setup libs (download) cd libs