1
0
mirror of https://github.com/Z4nzu/hackingtool.git synced 2025-06-20 06:15:54 +02:00

Exit after hackingtool is successfully uninstalled

This commit is contained in:
Christian Clauss
2023-07-19 18:24:38 +02:00
committed by GitHub
parent 2ecb207953
commit 6538cee32d

View File

@ -1,5 +1,6 @@
# coding=utf-8
import os
import sys
from time import sleep
from core import HackingTool
@ -53,9 +54,8 @@ class UninstallTool(HackingTool):
"sudo rm -rf /usr/share/doc/hackingtool/;"
"cd /etc/;"
"sudo rm -rf /etc/hackingtool/;")
print("\nHackingtool Successfully Uninstalled..")
print("Happy Hacking..!!")
sleep(1)
print("\nHackingtool Successfully Uninstalled... Goodbye.")
sys.exit()
class ToolManager(HackingToolsCollection):