6 lines
273 B
Bash
Executable file
6 lines
273 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Make stow always stow to my HOME directory. It's weird that this
|
|
# can't be done in a .stowrc, it doesn't support variable expansion.
|
|
/usr/bin/stow --target "$HOME" --ignore "GNUmakefile" --ignore "org" \
|
|
--ignore ".dir-locals.el" "$@"
|