From e649b883c648716468e4630a6793189ffcb7cd92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Cort=C3=A9z?= Date: Sun, 30 Nov 2014 17:43:00 -0600 Subject: [PATCH] gendoc script has been deletedo so it isn't necessary --- tools/gen_doc.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 tools/gen_doc.sh diff --git a/tools/gen_doc.sh b/tools/gen_doc.sh deleted file mode 100644 index ff4d3c64..00000000 --- a/tools/gen_doc.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -mkdir ../src/documentation -for i in `ls ../documentation` -do - if test -d ../documentation/$i -then - mkdir ../src/documentation/$i - pandoc -s ../documentation/$i/changes.md -o ../src/documentation/$i/changes.html - pandoc -s ../documentation/$i/manual.md -o ../src/documentation/$i/manual.html - cp ../documentation/license.txt ../src/documentation/license.txt - fi -done -exit