Fix make target and escape sequence warnings

This commit is contained in:
Stalin
2026-04-15 06:18:52 +05:30
parent c96b001f47
commit bf695f9492
3 changed files with 5 additions and 8 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ def main():
os.system("clear")
# Print banner
print('''\033[1;32;40m \n
print(r'''
_ _ _____
| \ | | _____ _|_ _|__ _ __
| \| |/ _ \ \/ / | |/ _ \| '__|
+4 -4
View File
@@ -140,10 +140,10 @@ CookieAuthentication 1
return False
# ASCII Art
print('''\033[1;32;40m \n
* * _____
| \ | | _____ *|* *|*_ *_*
| \| |/ * \ \/ / | |/ * \| '__|
print(r'''
_ _ _____
| \ | | _____ _|_ _|__ _ __
| \| |/ _ \ \/ / | |/ _ \| '__|
| |\ | __/> < | | (_) | |
|_| \_|\___/_/\_\ |_|\___/|_|
-3
View File
@@ -18,9 +18,6 @@ override_dh_auto_test:
override_dh_auto_install:
dh_auto_install
# Create nextor wrapper script in /usr/bin
$(MAKE) -B --directory=debian install-wrapper
install-wrapper:
mkdir -p debian/nextor/usr/bin
echo '#!/usr/bin/python3' > debian/nextor/usr/bin/nextor
echo 'from Nex_Tor_IP_changer.NexTOR import main' >> debian/nextor/usr/bin/nextor