Wallpaper-Changer/build.py
2020-12-03 01:09:26 +01:00

15 lines
322 B
Python

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()