10 lines
249 B
Plaintext
10 lines
249 B
Plaintext
|
mudPath="${installPath}/tintin-empiremud/em.tin"
|
||
|
pushd "${mudPath%/*}"
|
||
|
git pull | \
|
||
|
dialog --progressbox "Checking for updates, please wait..." -1 -1
|
||
|
if [[ -n "${COLORTERM}" ]]; then
|
||
|
terminal_emulator tt++ ${mudPath##*/}
|
||
|
else
|
||
|
tt++ ${mudPath##*/}
|
||
|
fi
|