Skip to content

Commit 2026a5d

Browse files
committed
fix: Do not print full array vobj value
This is extraneous information that is shown anyways. Insted, do not print anything in its place.
1 parent 7082038 commit 2026a5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pkg/src/util/util.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ bash_object.util.print_hierarchy() {
9797
local vmd_dtype="$REPLY2"
9898

9999
printf '%*s' "$current_indent" ''
100-
printf '%s\n' "|- $object_value ($virtual_object_name)"
100+
printf '%s\n' "|- ($virtual_object_name)"
101101

102102
bash_object.util.print_hierarchy "$virtual_object_name" $((current_indent+2))
103103
else

0 commit comments

Comments
 (0)