From c9a7eb098ae8892f9e2324084fd210bcb6682c35 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 16 May 2024 11:32:45 +0200 Subject: [PATCH] Make idempotent --- scripts/p7s/emacs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/p7s/emacs.py b/scripts/p7s/emacs.py index 633aab5..c27001f 100644 --- a/scripts/p7s/emacs.py +++ b/scripts/p7s/emacs.py @@ -5,5 +5,7 @@ import p7s def setup_emacs(): p7s.BASHRC_D.mkdir(parents=True, exist_ok=True) + (p7s.BASHRC_D / "emacs.bash").unlink() subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.bash").absolute(), p7s.BASHRC_D / "emacs.bash"], check=True) + (pathlib.Path.home() / ".emacs").unlink() subprocess.run(["ln", "-s", (pathlib.Path(__file__).parent.parent.parent / "emacs" / "emacs.el").absolute(), pathlib.Path.home() / ".emacs"], check=True) -- 2.47.3