Update Gmeek.py

This commit is contained in:
Meekdai 2024-07-01 22:17:51 +08:00
parent 600898f139
commit fdfbf2a42e

View File

@ -73,12 +73,6 @@ class GMEEK():
os.mkdir(self.root_dir)
os.mkdir(self.post_dir)
if os.path.exists(self.static_dir):
shutil.copytree(self.static_dir, os.path.join(self.root_dir, 'static'))
print("Copy static to docs")
else:
print("static not exist")
if os.path.exists(self.static_dir):
for item in os.listdir(self.static_dir):
src = os.path.join(self.static_dir, item)