mirror of
https://github.com/sbopkg/sbopkg
synced 2024-12-31 10:23:25 +01:00
Fix a tr invocation. Thanks to Marie-Claude Collilieux for raising this issue.
This commit is contained in:
parent
71ef334ac5
commit
64fd6c526a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue