32 lines
778 B
Bash
Executable File
32 lines
778 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## AutoUpdate TrueTool using Git
|
|
updater(){
|
|
echo -e "${BWhite}Checking for updates...${Color_Off}"
|
|
git remote set-url origin "${targetRepo}"
|
|
BRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
git fetch -q
|
|
git update-index -q --refresh
|
|
if [[ $(git status --branch --porcelain) == *"behind"* ]]; then
|
|
echo -e "${IPurple}TrueTool requires update${Color_Off}"
|
|
git reset --hard -q
|
|
git checkout -q "${BRANCH}"
|
|
git pull -q
|
|
echo "script updated"
|
|
if [[ "$CHANGED" == "true" ]]; then
|
|
echo "LOOP DETECTED, exiting"
|
|
exit 1
|
|
else
|
|
echo "restarting script after update..."
|
|
export CHANGED="true"
|
|
. "${SCRIPT_DIR}/truetool.sh" "$@"
|
|
exit
|
|
fi
|
|
else
|
|
echo -e "${IGreen}script up-to-date${Color_Off}"
|
|
export CHANGED="false"
|
|
fi
|
|
echo ""
|
|
}
|
|
export -f updater
|