11 lines
301 B
Python
11 lines
301 B
Python
def build():
|
|
from os import system as cmd
|
|
from editor import edit
|
|
|
|
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")
|