diff options
author | Peter 'Pita' Martischka <petermartischka@googlemail.com> | 2011-07-27 14:37:12 +0100 |
---|---|---|
committer | Peter 'Pita' Martischka <petermartischka@googlemail.com> | 2011-07-27 14:37:12 +0100 |
commit | de5c0741f7585e0afde690bba128c0b1b0c3c035 (patch) | |
tree | 61dd3019e8ea0daeb857f4a553f2ac9aa4a5549e /bin/run.sh | |
parent | e96595896c8b33df9756acfb18f4b572696185e2 (diff) | |
download | etherpad-lite-de5c0741f7585e0afde690bba128c0b1b0c3c035.zip |
improved the bin files
Diffstat (limited to 'bin/run.sh')
-rwxr-xr-x | bin/run.sh | 41 |
1 files changed, 2 insertions, 39 deletions
@@ -16,45 +16,8 @@ if [ "$(id -u)" -eq 0 ]; then exit 1 fi -#Is node installed? -hash node > /dev/null 2>&1 || { - echo "You need to install node to run Etherpad-Lite!" >&2 - exit 1 -} - -#Is npm installed? -hash npm > /dev/null 2>&1 || { - echo "You need to install npm to run Etherpad-Lite!" >&2 - exit 1 -} - -#Does a settings.json exist? if no copy the template -if [ ! -f "settings.json" ]; then - echo "Copy the settings template to settings.json..." - cp -v settings.json.template settings.json -fi - -echo "Ensure that all dependencies are up to date..." -npm install - -echo "Ensure jQuery is downloaded and up to date..." -DOWNLOAD_JQUERY="true" -NEEDED_VERSION="1.6.2" -if [ -f "static/js/jquery.min.js" ]; then - VERSION=$(cat static/js/jquery.min.js | head -n 2 | tail -n 1 | grep -o "v[0-9]*\.[0-9]*\.[0-9]*"); - - if [ ${VERSION#v} = $NEEDED_VERSION ]; then - DOWNLOAD_JQUERY="false" - fi -fi - -if [ $DOWNLOAD_JQUERY = "true" ]; then - wget -O static/js/jquery.min.js http://code.jquery.com/jquery-$NEEDED_VERSION.min.js -fi - -#Remove all minified data to force node creating it new -echo "Clear minfified cache..." -rm var/minified* 2> /dev/null +#prepare the enviroment +bin/installDeps.sh || exit 1 #Move to the node folder and start echo "start..." |