add Framework deletion
This commit is contained in:
12
modules/purge
Normal file
12
modules/purge
Normal file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
# Dynasty Purge Protocol
|
||||
run_purge() {
|
||||
echo -e "${RED}🔥 WARNING: This will incinerate the Dynasty Framework.${NC}"
|
||||
read -p "Are you sure? (y/n): " confirm
|
||||
if [[ "$confirm" == "y" ]]; then
|
||||
sudo rm -rf /opt/dynr
|
||||
sudo rm /usr/local/bin/dynr
|
||||
echo -e "${GOLD}The Dynasty has retreated into the shadows.${NC}"
|
||||
exit 0
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user