diff options
author | John McLear <john@mclear.co.uk> | 2013-11-24 02:57:15 +0000 |
---|---|---|
committer | John McLear <john@mclear.co.uk> | 2013-11-24 02:57:15 +0000 |
commit | 678c80d1dcae8113b4065e1c44d16fa976ca1608 (patch) | |
tree | 7c27264f5e5ddc208dff32cdaa6a371e6d76ca0d /bin/buildDebian.sh | |
parent | 9d2f5e5cca98a5e16f719e361249f02921b30be2 (diff) | |
download | etherpad-lite-678c80d1dcae8113b4065e1c44d16fa976ca1608.zip |
whoa there, no need to include .git folder in build
Diffstat (limited to 'bin/buildDebian.sh')
-rwxr-xr-x | bin/buildDebian.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/buildDebian.sh b/bin/buildDebian.sh index b78cb53d..507a60a4 100755 --- a/bin/buildDebian.sh +++ b/bin/buildDebian.sh @@ -17,7 +17,7 @@ rm -rf ${SRC} rsync -a deb-src/ ${SRC}/ mkdir -p ${SYSROOT}/opt/ -rsync -a ../ ${SYSROOT}/opt/etherpad/ --delete +rsync --exclude '.git' -a ../ ${SYSROOT}/opt/etherpad/ --delete find ${SRC}/ -type d -exec chmod 0755 {} \; find ${SRC}/ -type f -exec chmod go-w {} \; |