Skip to content

Commit

Permalink
Exit after hackingtool is successfully uninstalled
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jul 19, 2023
1 parent 2ecb207 commit 6538cee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/tool_manager.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# coding=utf-8
import os
import sys
from time import sleep

from core import HackingTool
Expand Down Expand Up @@ -53,9 +54,8 @@ def uninstall(self):
"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):
Expand Down

0 comments on commit 6538cee

Please sign in to comment.