commit
5b5230b28c
|
@ -1,8 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
#Move to the folder where ep-lite is installed
|
#Move to the folder where ep-lite is installed
|
||||||
FOLDER=$(dirname $(readlink -f $0))
|
cd `dirname $0`
|
||||||
cd $FOLDER
|
|
||||||
|
|
||||||
#Was this script started in the bin folder? if yes move out
|
#Was this script started in the bin folder? if yes move out
|
||||||
if [ -d "../bin" ]; then
|
if [ -d "../bin" ]; then
|
||||||
|
@ -21,7 +20,7 @@ hash node-inspector > /dev/null 2>&1 || {
|
||||||
|
|
||||||
node-inspector &
|
node-inspector &
|
||||||
|
|
||||||
echo "If you new to node-inspector, take a look at this video: http://youtu.be/AOnK3NVnxL8"
|
echo "If you are new to node-inspector, take a look at this video: http://youtu.be/AOnK3NVnxL8"
|
||||||
|
|
||||||
cd "node"
|
cd "node"
|
||||||
node --debug server.js
|
node --debug server.js
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
#Move to the folder where ep-lite is installed
|
#Move to the folder where ep-lite is installed
|
||||||
FOLDER=$(dirname $(readlink -f $0))
|
cd `dirname $0`
|
||||||
cd $FOLDER
|
|
||||||
|
|
||||||
#Was this script started in the bin folder? if yes move out
|
#Was this script started in the bin folder? if yes move out
|
||||||
if [ -d "../bin" ]; then
|
if [ -d "../bin" ]; then
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
#Move to the folder where ep-lite is installed
|
#Move to the folder where ep-lite is installed
|
||||||
FOLDER=$(dirname $(readlink -f $0))
|
cd `dirname $0`
|
||||||
cd $FOLDER
|
|
||||||
|
|
||||||
#Was this script started in the bin folder? if yes move out
|
#Was this script started in the bin folder? if yes move out
|
||||||
if [ -d "../bin" ]; then
|
if [ -d "../bin" ]; then
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
#Move to the folder where ep-lite is installed
|
#Move to the folder where ep-lite is installed
|
||||||
FOLDER=$(dirname $(readlink -f $0))
|
cd `dirname $0`
|
||||||
cd $FOLDER
|
|
||||||
|
|
||||||
#Was this script started in the bin folder? if yes move out
|
#Was this script started in the bin folder? if yes move out
|
||||||
if [ -d "../bin" ]; then
|
if [ -d "../bin" ]; then
|
||||||
|
@ -16,7 +15,7 @@ if [ "$(id -u)" -eq 0 ]; then
|
||||||
read rocks
|
read rocks
|
||||||
if [ ! $rocks = "Etherpad Lite rocks my socks" ]
|
if [ ! $rocks = "Etherpad Lite rocks my socks" ]
|
||||||
then
|
then
|
||||||
echo "You're input was wrong"
|
echo "Your input was incorrect"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -18,8 +18,7 @@ TIME_BETWEEN_EMAILS=600 # 10 minutes
|
||||||
LAST_EMAIL_SEND=0
|
LAST_EMAIL_SEND=0
|
||||||
|
|
||||||
#Move to the folder where ep-lite is installed
|
#Move to the folder where ep-lite is installed
|
||||||
FOLDER=$(dirname $(readlink -f $0))
|
cd `dirname $0`
|
||||||
cd $FOLDER
|
|
||||||
|
|
||||||
#Was this script started in the bin folder? if yes move out
|
#Was this script started in the bin folder? if yes move out
|
||||||
if [ -d "../bin" ]; then
|
if [ -d "../bin" ]; then
|
||||||
|
|
Loading…
Reference in New Issue