1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-06 11:46:24 -07:00

Move ERD image to sql/

Make delete() in build.py properly delete dirs
This commit is contained in:
Eggbertx 2022-04-05 19:56:57 -07:00
parent 27bc7d1b51
commit c37d5cd85a
3 changed files with 3 additions and 1 deletions

View file

@ -88,6 +88,8 @@ def delete(delpath):
if pinfo & PATH_FILE > 0 or pinfo & PATH_LINK > 0:
os.remove(delpath)
return pinfo
elif pinfo & PATH_DIR > 0:
shutil.rmtree(delpath)
return PATH_UNKNOWN
@ -267,7 +269,7 @@ def docker(option="guestdb", attached=False):
def install(prefix="/usr", document_root="/srv/gochan", js_only=False, css_only=False, templates_only=False):
if gcos is "windows":
if gcos == "windows":
print("Installation is not currently supported for Windows, use the respective directory created by running `python build.py release`")
sys.exit(1)
mkdir(document_root)

View file

Before

Width:  |  Height:  |  Size: 270 KiB

After

Width:  |  Height:  |  Size: 270 KiB

Before After
Before After