mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
20 lines
314 B
Bash
Executable file
20 lines
314 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ -d "../bin" ]; then
|
|
cd "../"
|
|
fi
|
|
|
|
type -P node &>/dev/null || {
|
|
echo "You need to install node!" >&2
|
|
exit 1
|
|
}
|
|
|
|
type -P doc.md &>/dev/null || {
|
|
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
|