We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e339962 commit 3eebcd7Copy full SHA for 3eebcd7
entrypoint.sh
@@ -58,7 +58,8 @@ mod_auto_share() {
58
SHAREDDIR_TMP="${SHAREDDIR_CONF}.tmp"
59
printf "%s\n" "${AMULE_INCOMING}" > "$SHAREDDIR_TMP"
60
IFS=';'
61
- set -- "$MOD_AUTO_SHARE_DIRECTORIES"
+ # shellcheck disable=SC2086
62
+ set -- $MOD_AUTO_SHARE_DIRECTORIES
63
for raw_dir in "$@"; do
64
dir=$(printf '%s' "$raw_dir" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
65
[ -z "$dir" ] && continue
0 commit comments