summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-12-04 17:12:27 +0100
committerPeter 'Pita' Martischka <petermartischka@googlemail.com>2011-12-04 17:12:27 +0100
commit3c8ee3df208ce518b11ce8e90fedd1267fe50ccc (patch)
treeffe958a1381563aa166173ceee6296af18afbc8b /bin
parentbfbdac10d3722e95442cfc186a6c1c8ce70aac43 (diff)
downloadetherpad-lite-3c8ee3df208ce518b11ce8e90fedd1267fe50ccc.zip
removed docs created with doc.md, these docs were completly useless
Diffstat (limited to 'bin')
-rwxr-xr-xbin/generateJsDoc.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/bin/generateJsDoc.sh b/bin/generateJsDoc.sh
deleted file mode 100755
index 8704d5ad..00000000
--- a/bin/generateJsDoc.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-#Move to the folder where ep-lite is installed
-cd `dirname $0`
-
-#Was this script started in the bin folder? if yes move out
-if [ -d "../bin" ]; then
- cd "../"
-fi
-
-hash node > /dev/null 2>&1 || {
- echo "You need to install node!" >&2
- exit 1
-}
-
-hash doc.md > /dev/null 2>&1 || {
- echo "You need to install doc.md! npm install -g doc.md" >&2
- exit 1
-}
-
-echo "empty doc folder..."
-rm -rf doc/jsdoc/*
-
-doc.md node doc/jsdoc