mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
20 lines
316 B
Bash
Executable file
20 lines
316 B
Bash
Executable file
#!/bin/sh
|
|
|
|
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
|