From 90d5d1c6c6410cebc69d2914fe36ea51319d0d0a Mon Sep 17 00:00:00 2001 From: Guillermo Ramos Date: Sun, 7 Sep 2025 10:27:44 +0200 Subject: Ignore jujutsu dir on install --- README.md | 4 ---- install.sh | 4 +++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5ea674e..1210b49 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,3 @@ To symlink all tools to ~/.local/bin: To shellcheck all tools: $ ./shellcheck.sh - -# Who - -Guillermo Ramos diff --git a/install.sh b/install.sh index 8343cde..482d1cf 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,6 @@ #!/bin/sh mkdir -p ~/.local/bin -stow -v "$(dirname "$0")" -t ~/.local/bin --ignore='.*\.sh$' + +# README.md and LICENSE are redundant, stow ignores them by default +stow -v "$(dirname "$0")" -t ~/.local/bin --ignore='.*\.sh$|\.jj|README.md|LICENSE' -- cgit v1.2.3