Commit 8e2f1138 authored by Sergey Zorin's avatar Sergey Zorin
Browse files

fix CI warnings SC2039

parent 346454c2
......@@ -92,7 +92,7 @@ _nic_get_auth_elements() {
if [ -n "$NIC_Token" ]; then
_two_values="$(echo "${NIC_Token}" | _dbase64)"
_debug _two_values "$_two_values"
IFS=":" read -r NIC_ClientID NIC_ClientSecret <<<"$_two_values"
IFS=":" read -r NIC_ClientID NIC_ClientSecret < <(echo "$_two_values")
_debug restored_NIC_ClientID "$NIC_ClientID"
_debug restored_NIC_ClientSecret "$NIC_ClientSecret"
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment