Delete build.py

This commit is contained in:
Surferlul 2020-12-03 01:12:10 +01:00 committed by GitHub
parent 3446289d8f
commit c8f0075a3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +0,0 @@
from subprocess import call
from shutil import rmtree
from os.path import isdir
if isdir(".\\build"):
rmtree(".\\build")
call("python3 setup.py build", shell=True)
print(
"""
________________________________
BUILD FINISHED
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
"""
)
input()