mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-06 05:29:42 +00:00
8385e38a0d
* AUR Installation * Finished the scripts * Forgot about $RC * Fixed func name * oopsie 2 * Replaced `jq` with `grep`
46 lines
1.5 KiB
Bash
Executable File
46 lines
1.5 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
. ../common-script.sh
|
|
|
|
updateLinutil() {
|
|
if [ ! -e "$HOME/.cargo/bin/linutil" ]; then
|
|
printf "%b\n" "${RED}This script only updates the binary installed through cargo.\nlinutil_tui is not installed.${RC}"
|
|
exit 1
|
|
fi
|
|
|
|
if ! command_exists cargo; then
|
|
printf "%b\n" "${YELLOW}Installing rustup...${RC}"
|
|
case "$PACKAGER" in
|
|
pacman)
|
|
"$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm rustup
|
|
;;
|
|
zypper)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -n curl gcc make
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
. $HOME/.cargo/env
|
|
;;
|
|
*)
|
|
"$ESCALATION_TOOL" "$PACKAGER" install -y rustup
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
INSTALLED_VERSION=$(cargo install --list | grep "linutil_tui" | awk '{print $2}' | tr -d 'v:')
|
|
LATEST_VERSION=$(curl -s https://crates.io/api/v1/crates/linutil_tui | grep -oP '"max_version":\s*"\K[^"]+')
|
|
|
|
if [ "$INSTALLED_VERSION" = "$LATEST_VERSION" ]; then
|
|
printf "%b\n" "${GREEN}linutil_tui is up to date.${RC}"
|
|
exit 0
|
|
fi
|
|
|
|
printf "%b\n" "${YELLOW}Updating linutil_tui...${RC}"
|
|
rustup default stable
|
|
cargo install --force linutil_tui
|
|
printf "%b\n" "${GREEN}Updated successfully.${RC}"
|
|
}
|
|
|
|
checkEnv
|
|
checkEscalationTool
|
|
checkAURHelper
|
|
updateLinutil
|