Drop StatsFM by request of creator
Some checks failed
Test / Test (push) Has been cancelled
Release / Build Equicord (push) Has been cancelled
Sync to Codeberg / Sync Codeberg and Github (push) Has been cancelled

This commit is contained in:
thororen1234 2025-03-27 11:45:50 -04:00
parent 70164e959d
commit 28d9ec5af0
No known key found for this signature in database
5 changed files with 6 additions and 400 deletions

View file

@ -58,7 +58,7 @@ check_for_updates() {
echo -e "${YELLOW}Warning: Could not fetch last modified date from GitHub. Using existing installer.${NC}"
return
fi
local_modified=$(stat -c "%y" "$INSTALLER_PATH" | cut -d' ' -f1-2) || error "Failed to get local modified date"
if [ "$local_modified" != "$latest_modified" ]; then
@ -92,11 +92,11 @@ main() {
debug_log "Starting installation process"
check_root
check_for_updates
local priv_cmd
priv_cmd=$(find_privilege_cmd)
debug_log "Using privilege command: $priv_cmd"
echo -e "${YELLOW}Running installer with $priv_cmd...${NC}"
debug_log "Executing installer: $priv_cmd $INSTALLER_PATH"
if ! "$priv_cmd" "$INSTALLER_PATH"; then
@ -108,7 +108,7 @@ main() {
echo -e "\n${GREEN}Installation completed successfully!${NC}"
echo -e "\nCredits:"
echo "Original script forked from Vencord"
echo "Modified by PhoenixAceVFX & Crxaw for Equicord Updater"
echo "Modified by PhoenixAceVFX for Equicord Updater"
echo "Rewrite by PhoenixAceVFX"
}