Fix a tr invocation. Thanks to Marie-Claude Collilieux for raising this issue.

This commit is contained in:
slakmagik 2009-03-12 22:19:09 +00:00
parent 71ef334ac5
commit 64fd6c526a

View file

@ -96,7 +96,7 @@ config_check () {
[[ -e $SBOPKG_CONF ]] && . $SBOPKG_CONF
[[ -e $HOME/.sbopkg.conf ]] && . $HOME/.sbopkg.conf
KEEPLOG=$(echo "$KEEPLOG" | tr [[:lower:]] [[:upper:]])
KEEPLOG=$(echo "$KEEPLOG" | tr "[:lower:]" "[:upper:]")
# Some configuration options are mandatory
for VAR in RSYNCMIRROR SLACKVER LOCALREPO SRCDIR TMP OUTPUT QUEUEDIR \
KEEPLOG LOGFILE DEBUG RSYNCFLAGS WGETFLAGS DIFF DIFFOPTS; do