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
relationship.go has a bug where it's not able to parse the --caveat caveatname:json value properly.
the fix should be
replace line no-267 parts := strings.Split(caveatString, ":")
with parts := strings.SplitN(caveatString, ":",2)
The text was updated successfully, but these errors were encountered:
relationship.go has a bug where it's not able to parse the --caveat caveatname:json value properly.
the fix should be
replace line no-267
parts := strings.Split(caveatString, ":")
with
parts := strings.SplitN(caveatString, ":",2)
The text was updated successfully, but these errors were encountered: