2016-07-17 15:08:09 +02:00
|
|
|
#!/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.
|
2016-10-19 11:28:51 +02:00
|
|
|
/usr/bin/stow --target "$HOME" --ignore "GNUmakefile" --ignore "org" \
|
|
|
|
--ignore ".dir-locals.el" "$@"
|