1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/plugins/post_build.py

15 lines
421 B
Python

from pelican import signals
import os
OUTPUT_PATH = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'output')
def post_build(*args, **kwargs):
os.system("mv {0}/assets/robots.txt {0}".format(OUTPUT_PATH))
os.system("cp -R {0}/assets/* {0}/static".format(OUTPUT_PATH))
os.system("rm -rf {0}/assets".format(OUTPUT_PATH))
def register():
signals.finalized.connect(post_build)