Codebase list xapp / run/02b64b6f-82e5-4835-98bc-2b04f4705e61/main makedoc
run/02b64b6f-82e5-4835-98bc-2b04f4705e61/main

Tree @run/02b64b6f-82e5-4835-98bc-2b04f4705e61/main (Download .tar.gz)

makedoc @run/02b64b6f-82e5-4835-98bc-2b04f4705e61/mainraw · history · blame

#!/usr/bin/python3

# This script is used to update the docs in docs/reference
# which are served at https://projects.linuxmint.com/xapp/reference/index.html.

import os
import sys

SRC="debian/tmp/usr/share/gtk-doc/html/libxapp/"

if not os.path.exists(SRC):
    print("Build first, with dpkg-buildpackage")
    sys.exit(1)

os.system("rm -rf docs/reference/*")
os.system("cp -R %s/* docs/reference/" % SRC)

print ("Docs updated, you can now commit and push.")