diff options
author | Peter 'Pita' Martischka <petermartischka@googlemail.com> | 2011-07-31 17:37:50 +0100 |
---|---|---|
committer | Peter 'Pita' Martischka <petermartischka@googlemail.com> | 2011-07-31 17:37:50 +0100 |
commit | 22b00264d89fc24609da02d2b45a0ddea2d9d891 (patch) | |
tree | 46874ef2be18320d58ca7dd551cfbd1312f10977 | |
parent | de32503f8ef5b7ec71e0fafff796eef7c5d13a81 (diff) | |
download | etherpad-lite-22b00264d89fc24609da02d2b45a0ddea2d9d891.zip |
Ops, looks like I messed up installDeps.sh
-rwxr-xr-x | bin/installDeps.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/installDeps.sh b/bin/installDeps.sh index 6602ef5f..2c880896 100755 --- a/bin/installDeps.sh +++ b/bin/installDeps.sh @@ -1,3 +1,5 @@ +#!/bin/sh + #Move to the folder where ep-lite is installed FOLDER=$(dirname $(readlink -f $0)) cd $FOLDER @@ -54,9 +56,8 @@ echo "Clear minfified cache..." rm -f var/minified* echo "ensure custom css/js files are created..." -FILES=( index pad timeslider ) -for f in ${FILES[@]} +for f in "index" "pad" "timeslider" do if [ ! -f "static/custom/$f.js" ]; then cp -v "static/custom/js.template" "static/custom/$f.js" || exit 1 |