#!/bin/sh
# NexTerm Mandatory Pre-Push Git Hook
# Automatically installed via `python scripts/install_hooks.py --install`

if [ "$SKIP_GUARDIAN" = "1" ]; then
    exit 0
fi

export PYTHONIOENCODING=utf-8
export PYTHONUTF8=1

"C:\Users\TUTUN\AppData\Local\Programs\Python\Python313\python.exe" "C:\Mr-Anonymous-Guy\Nexterm\scripts\pre_push.py" "$@"
EXIT_CODE=$?
exit $EXIT_CODE
