First commit
This commit is contained in:
commit
7693c29676
102 changed files with 11831 additions and 0 deletions
69
helper.sh
Executable file
69
helper.sh
Executable file
|
@ -0,0 +1,69 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
clear
|
||||
|
||||
HELPER_SCRIPT_FOLDER="$( cd "$( dirname "${0}" )" && pwd )"
|
||||
for script in "${HELPER_SCRIPT_FOLDER}/scripts/"*.sh; do . "${script}"; done
|
||||
for script in "${HELPER_SCRIPT_FOLDER}/scripts/menu/"*.sh; do . "${script}"; done
|
||||
for script in "${HELPER_SCRIPT_FOLDER}/scripts/menu/KE/"*.sh; do . "${script}"; done
|
||||
|
||||
function update_helper_script() {
|
||||
echo -e "${white}"
|
||||
echo -e "Info: Updating Creality Helper Script..."
|
||||
cd "${HELPER_SCRIPT_FOLDER}"
|
||||
git reset --hard && git pull
|
||||
ok_msg "Creality Helper Script has been updated!"
|
||||
echo -e " ${green}Please restart script to load the new version.${white}"
|
||||
echo
|
||||
exit 0
|
||||
}
|
||||
|
||||
function update_available() {
|
||||
[[ ! -d "${HELPER_SCRIPT_FOLDER}/.git" ]] && return
|
||||
local remote current
|
||||
cd "${HELPER_SCRIPT_FOLDER}"
|
||||
! git branch -a | grep -q "\* main" && return
|
||||
git fetch -q > /dev/null 2>&1
|
||||
remote=$(git rev-parse --short=8 FETCH_HEAD)
|
||||
current=$(git rev-parse --short=8 HEAD)
|
||||
if [[ ${remote} != "${current}" ]]; then
|
||||
echo "true"
|
||||
fi
|
||||
}
|
||||
|
||||
function update_menu() {
|
||||
local update_available=$(update_available)
|
||||
if [[ "$update_available" == "true" ]]; then
|
||||
top_line
|
||||
title "A new script version is available!" "${green}"
|
||||
inner_line
|
||||
hr
|
||||
echo -e " │ ${cyan}It's recommended to keep script up to date. Updates usually ${white}│"
|
||||
echo -e " │ ${cyan}contain bug fixes, important changes or new features. ${white}│"
|
||||
echo -e " │ ${cyan}Please consider updating! ${white}│"
|
||||
hr
|
||||
echo -e " │ See changelog here: ${yellow}https://tinyurl.com/223jc4zr ${white}│"
|
||||
hr
|
||||
bottom_line
|
||||
local yn
|
||||
while true; do
|
||||
read -p " Do you want to update now? (${yellow}y${white}/${yellow}n${white}): ${yellow}" yn
|
||||
case "${yn}" in
|
||||
Y|y)
|
||||
run "update_helper_script"
|
||||
break;;
|
||||
N|n)
|
||||
break;;
|
||||
*)
|
||||
error_msg "Please select a correct choice!";;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
rm -rf /root/.cache
|
||||
set_paths
|
||||
set_permissions
|
||||
update_menu
|
||||
main_menu
|
Loading…
Add table
Add a link
Reference in a new issue