Skip to content

Commit ee08bb6

Browse files
committed
fix typo
1 parent bba7193 commit ee08bb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

agents/plugins/proxmox_bs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jq
3434

3535
command_section() {
3636
PIPE=
37-
SECTION_POSTFIX=
37+
SECTION_SUFFIX=
3838
while [[ "$1" == -* ]]; do
3939
if [ "$1" == "-P" ]; then
4040
PIPE="${PIPE} | $2"
@@ -45,13 +45,13 @@ command_section() {
4545
shift 2
4646
fi
4747
if [ "$1" == "-p" ]; then
48-
SECTION_POSTFIX=$2
48+
SECTION_SUFFIX=$2
4949
shift 2
5050
fi
5151
done
5252
cmd=$1
5353
shift
54-
printf '===%s===%s\n' "$cmd" "$SECTION_POSTFIX"
54+
printf '===%s===%s\n' "$cmd" "$SECTION_SUFFIX"
5555
# shellcheck disable=SC2086
5656
echo /bin/env $cmd $* $PIPE >&2
5757
# shellcheck disable=SC2086

0 commit comments

Comments
 (0)