Wallpaper-Changer/build.py

15 lines
322 B
Python
Raw Normal View History

2020-12-03 00:09:26 +00:00
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()