fpsql-py-package/main.py

20 lines
436 B
Python
Raw Normal View History

2023-05-24 13:57:27 +00:00
from os import environ, system
2023-04-20 11:33:12 +00:00
from build import build
2023-05-24 13:57:27 +00:00
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()
2023-04-20 11:33:12 +00:00
else:
2023-05-24 13:57:27 +00:00
exit("No demo yet!")