You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function, verifyCertAgainstPool, has two instances where it prints "usage" syntax if arg(s) are not provided. However, these instances only show the function name and do not specify the args syntax.
if [[ "" == "${1-}" ]]
then
printUsage "verifyCertAgainstPool"
return 1
fi
if [[ "" == "$2" ]]
then
printUsage "verifyCertAgainstPool"
return 1
fi
The text was updated successfully, but these errors were encountered:
ziti/quickstart/docker/image/ziti-cli-functions.sh
Line 1654 in 9a83ca8
This function,
verifyCertAgainstPool,
has two instances where it prints "usage" syntax if arg(s) are not provided. However, these instances only show the function name and do not specify the args syntax.The text was updated successfully, but these errors were encountered: