From 1d82bee9c2341258161ebd27c3a936038c64678c Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Wed, 10 Oct 2018 16:53:40 +0200 Subject: [PATCH] fix: replace ln with cp; don't hardlink; close #470 --- fisher.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fisher.fish b/fisher.fish index 24c43d7..a1820b9 100644 --- a/fisher.fish +++ b/fisher.fish @@ -306,7 +306,7 @@ function _fisher_pkg_install -a pkg end end echo "linking $target" | command sed "s|$HOME|~|" >&2 - command ln -f $source $target + command cp -f $source $target switch $target case \*.fish source $target >/dev/null 2>/dev/null