16 lines
278 B
Bash
Executable file
16 lines
278 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
alias log='echo "[install.sh]"'
|
|
|
|
|
|
log "This will alter your home directory '$HOME'."
|
|
log "Press [return] to continue."
|
|
read
|
|
|
|
git pull --recurse-submodules
|
|
|
|
(
|
|
cd "./data"
|
|
stow --verbose --target="$HOME" --no-folding "home"
|
|
)
|