summaryrefslogtreecommitdiff
path: root/finalize_build.sh
blob: b48c6caad38107c352cc14e7eb9a83d3a871c709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

ROOT_DIR="./build/website/"
# replace placeholder tags with stuff
for i in $(find "$ROOT_DIR" -type f -name '*.html'); do
	if [ "$(basename "$i")" = 'index.html' ];
	then
		sed -i -e 's|<!--BACKDIR-->|\| <a href="\.\./index\.html">Back</a>|g' "$i"
	else
		sed -i -e 's|<!--BACKDIR-->|\| <a href="\./index\.html">Back</a>|g' "$i"
	fi
done;

sed -i -e 's|\| <a href="\.\./index\.html">Back</a>||g' "$ROOT_DIR/index.html"