mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Fixing scripts to run from both bin/ and /.
This commit is contained in:
parent
de967c1cd5
commit
debbced185
4 changed files with 21 additions and 5 deletions
|
@ -4,7 +4,11 @@ if [ ! -x /usr/bin/java ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
cd "../doc/jsdoc-toolkit"
|
||||
if [ -d "../bin" ]; then
|
||||
cd "../"
|
||||
fi
|
||||
|
||||
cd "doc/jsdoc-toolkit"
|
||||
|
||||
JSRUN="jsrun.jar"
|
||||
RUNJS="app/run.js"
|
||||
|
|
|
@ -11,5 +11,9 @@ type -P node &>/dev/null || {
|
|||
exit 1
|
||||
}
|
||||
|
||||
cd ../node
|
||||
if [ -d "../bin" ]; then
|
||||
cd "../"
|
||||
fi
|
||||
|
||||
cd "node"
|
||||
node server.js
|
||||
|
|
|
@ -11,5 +11,9 @@ node-inspector &
|
|||
|
||||
echo "If you new to node-inspector, take a look at this video: http://youtu.be/AOnK3NVnxL8"
|
||||
|
||||
cd ../node
|
||||
if [ -d "../bin" ]; then
|
||||
cd "../"
|
||||
fi
|
||||
|
||||
cd "node"
|
||||
node --debug server.js
|
||||
|
|
|
@ -6,5 +6,9 @@ type -P nodeunit &>/dev/null || {
|
|||
echo "Run: npm install nodeunit" >&2
|
||||
exit 1
|
||||
}
|
||||
|
||||
nodeunit ../tests
|
||||
|
||||
if [ -d "../bin" ]; then
|
||||
cd "../"
|
||||
fi
|
||||
|
||||
nodeunit tests
|
||||
|
|
Loading…
Reference in a new issue