diff options
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' |