9 lines
134 B
Bash
Executable file
9 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
alias log='echo "[update.sh]"'
|
|
|
|
|
|
yes | ./uninstall.sh
|
|
git pull
|
|
yes | ./install.sh
|