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

19 lines
436 B
Python

from os import environ, system
from build import build
system("clear")
# joe = system("cat /tmp/updated.txt")
# if joe != 0:
# system("./fix.sh")
# system("clear")
print("Should be nothing from here")
from package.src.fpsql import sql
print("Until here")
bob = input("(If owner) Build (Y|*)? ").upper()
system("clear")
if environ["REPL_OWNER"] == "Firepup650" and bob == "Y":
build()
exit()
else:
exit("No demo yet!")