From d24f813f3f2a05c112e803e4256b53535895fc98 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Wed, 14 Jul 2021 11:49:10 +1200 Subject: Initial mirror commit --- copy-docs.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 copy-docs.sh (limited to 'copy-docs.sh') diff --git a/copy-docs.sh b/copy-docs.sh new file mode 100755 index 0000000..1cd7dd5 --- /dev/null +++ b/copy-docs.sh @@ -0,0 +1,9 @@ +#!/bin/bash +VERSION=`cut -d "." -f 1-2 version.txt` +cd userdocs +DEST=../../fmsite/freshmemory/static/docs/$VERSION +mkdir $DEST +make clean html +rm -r _build/html/_sources 2> /dev/null +cp -r _build/html/* $DEST +cd .. -- cgit