NOX Framework v1.0.0

This commit is contained in:
nox-project
2026-04-07 10:17:43 +02:00
commit 913e764133
163 changed files with 15613 additions and 0 deletions
Vendored Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
set -e
if [ "$1" = "purge" ]; then
rm -rf /opt/nox-cli
rm -rf /root/.nox /root/.config/nox-cli
# Also clean for the invoking user if SUDO_USER is set
if [ -n "$SUDO_USER" ]; then
UHOME=$(getent passwd "$SUDO_USER" | cut -d: -f6)
rm -rf "${UHOME}/.nox" "${UHOME}/.config/nox-cli"
fi
fi