diff options
author | Uli Martens <uli@youam.net> | 2009-12-29 18:23:14 +0100 |
---|---|---|
committer | Joerg Jaspert <joerg@debian.org> | 2009-12-29 22:26:01 +0100 |
commit | ffd522df0efa4e480456fddfb3d26d7076c7cfd1 (patch) | |
tree | 0cc9f7f36052a971a80cadeb3dbaeee8d8591003 | |
parent | 537ed442d099e95a3831a7d2ce1496f725f310b1 (diff) |
quote some more arguments
Signed-off-by: Joerg Jaspert <joerg@debian.org>
-rwxr-xr-x | bin/runmirrors | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/runmirrors b/bin/runmirrors index 6952228..92dda78 100755 --- a/bin/runmirrors +++ b/bin/runmirrors @@ -55,10 +55,10 @@ if [ $# -gt 0 ]; then # Yeah well, new style, starting with - for getopts while getopts ':a:k:fh' OPTION ; do case $OPTION in - a) CONF=${OPTARG} - NAME=${NAME}-${CONF} + a) CONF="${OPTARG}" + NAME="${NAME}-${CONF}" ;; - k) PUSHKIND=${OPTARG} + k) PUSHKIND="${OPTARG}" ;; f) FROMFTPSYNC="true" ;; |