From 42081db89b68a17be32313f3bd81e01912e8ca8e Mon Sep 17 00:00:00 2001 From: Joel Wurtz Date: Fri, 5 Aug 2016 13:09:07 +0200 Subject: [PATCH] Add a watch file for auto update when writing documentation --- watch.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 watch.sh diff --git a/watch.sh b/watch.sh new file mode 100755 index 0000000..f244c53 --- /dev/null +++ b/watch.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +while inotifywait -e modify -r --include ".+?\.rst" .; do + make html +done