summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorJoerg Jaspert <joerg@debian.org>2008-10-30 23:20:57 +0100
committerJoerg Jaspert <joerg@debian.org>2008-10-30 23:20:57 +0100
commitebed55041e17844e3ed7bf6cda1efe75f2d7ed8c (patch)
tree6b485b864652e81db3255f3317dc15372f98bc79 /etc
parent6609169bb85037ce01bea27dbf184a31f192359b (diff)
Add a few ""
Signed-off-by: Joerg Jaspert <joerg@debian.org>
Diffstat (limited to 'etc')
-rw-r--r--etc/common6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/common b/etc/common
index ad8260f..4bee247 100644
--- a/etc/common
+++ b/etc/common
@@ -42,7 +42,7 @@ signal () {
# Defaults we always want, no matter what
SSH_OPTIONS="-o BatchMode=yes -o SetupTimeOut=45 -o ConnectTimeout=45 -o PasswordAuthentication=no"
- if [ ${SSHOPTS} -n ]; then
+ if [ -n "${SSHOPTS}" ]; then
SSH_OPTIONS="${SSH_OPTIONS} ${SSHOPTS}"
fi
@@ -60,10 +60,10 @@ signal () {
# Want a staged push. Fine, lets do that
PUSHARGS=""
- if [ -n ${PUSHARCHIVE} ]; then
+ if [ -n "${PUSHARCHIVE}" ]; then
PUSHARGS="${PUSHARGS} sync:archive:${PUSHARCHIVE}"
fi
- if [ -n ${PUSHCB} ]; then
+ if [ -n "${PUSHCB}" ]; then
PUSHARGS="${PUSHARGS} sync:callback"
fi