upgrade grpc binaries

This commit is contained in:
Justin (shocknet) 2024-08-15 20:23:43 -04:00
parent ae31a2830d
commit a01aae2b2e
5 changed files with 145 additions and 4083 deletions

View file

@ -26,9 +26,11 @@ install_nodejs() {
if command -v node &> /dev/null; then
NODE_VERSION=$(node -v | sed 's/v//')
log "Current Node.js version: $NODE_VERSION"
if [ "$(printf '%s\n' "$MINIMUM_VERSION" "$NODE_VERSION" | sort -V | head -n1)" = "$MINIMUM_VERSION" ]; then
log "Node.js is already installed and meets the minimum version requirement."
return
log "Exiting install_nodejs function with status 0"
return 0
else
log "${PRIMARY_COLOR}Updating${RESET_COLOR} Node.js to the LTS version..."
fi
@ -36,10 +38,14 @@ install_nodejs() {
log "Node.js is not installed. ${PRIMARY_COLOR}Installing the LTS version...${RESET_COLOR}"
fi
sudo -u $USER_NAME bash -c "source ${NVM_DIR}/nvm.sh && nvm install --lts" || {
log "Attempting to install/update Node.js..."
if ! sudo -u $USER_NAME bash -c "source ${NVM_DIR}/nvm.sh && nvm install --lts"; then
log "${PRIMARY_COLOR}Failed to install Node.js.${RESET_COLOR}"
exit 1
}
log "Exiting install_nodejs function with status 1"
return 1
fi
log "Node.js LTS installation completed."
log "Exiting install_nodejs function with status 0"
return 0
}