fpsql-py-package/build.py
2023-05-24 13:57:27 +00:00

13 lines
354 B
Python

def build():
from os import system as cmd
from editor import edit
cmd("rm -rf package/dist")
cmd("mkdir package/dist")
cmd("clear")
useEditor = input("Run Version Editor (Y|*)? ").upper()
if useEditor == "Y":
edit()
cmd("clear")
print("Run these commands next: \n cd package\n ./upload.sh")
cmd("bash")