diff options
author | Vratko Polak <vrpolak@cisco.com> | 2021-06-15 14:35:41 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2021-06-16 13:29:14 +0000 |
commit | 6da5a6920171682bd5bf6a77517bedfef91cbd0e (patch) | |
tree | 01e631f1a80deb4e26605fcb45cbfce35aae7dc5 /resources/libraries/bash/function/common.sh | |
parent | 46f0194afb8d4c8191b3c412332e3fbb92528c19 (diff) |
Line length: Fix recent merges
Not fixing .rst, .md, .yaml, conf.py, .vat, and so on.
Change-Id: Icc585d6dbebc8eb5c483b10326302571e94c614d
Signed-off-by: Vratko Polak <vrpolak@cisco.com>
Diffstat (limited to 'resources/libraries/bash/function/common.sh')
-rw-r--r-- | resources/libraries/bash/function/common.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index ec95f9227c..ed3b2044d3 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -526,7 +526,8 @@ function get_test_tag_string () { TEST_TAG_STRING=$("${cmd[@]}" <<< "${comment}" || true) if [[ -z "${TEST_TAG_STRING-}" ]]; then # Probably we got a base64 encoded comment. - comment=$(base64 --decode <<< "${GERRIT_EVENT_COMMENT_TEXT}" || true) + comment="${GERRIT_EVENT_COMMENT_TEXT}" + comment=$(base64 --decode <<< "${comment}" || true) comment=$(fgrep "${trigger}" <<< "${comment}" || true) TEST_TAG_STRING=$("${cmd[@]}" <<< "${comment}" || true) fi |