diff options
author | Guillermo Ramos | 2025-09-07 10:27:44 +0200 |
---|---|---|
committer | Guillermo Ramos | 2025-09-07 10:35:07 +0200 |
commit | 90d5d1c6c6410cebc69d2914fe36ea51319d0d0a (patch) | |
tree | c8e5aa79116e6b058c0133eada5d8bec79b2114a /install.sh | |
parent | 3317c7378c687f43dd099b1b052d0124a1e90622 (diff) | |
download | cli-90d5d1c6c6410cebc69d2914fe36ea51319d0d0a.tar.gz |
Ignore jujutsu dir on install
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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' |