From ef46a4352383e4de95d6c6622bedc98767696daf Mon Sep 17 00:00:00 2001 From: "flyingscorpio@pinebook-pro" Date: Sun, 19 Apr 2020 10:14:10 +0200 Subject: [PATCH] In do_symlink if statement, change home to / --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index e7f0862..d9dc57b 100755 --- a/install.py +++ b/install.py @@ -121,7 +121,7 @@ class Installer: ui.info_2("Symlink", pretty_dest, "->", pretty_src) - if p_src.startswith(self.home): + if p_src.startswith("/"): src_full = p_src else: src_full = self.base_dir / "dotfiles" / p_src