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
bash_object.util.die 'ERROR_VALUE_INCORRECT_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
bash_object.util.die 'ERROR_VALUE_INCORRECT_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
78
-
return
79
-
fi
80
-
elif [ "$final_value_type"== array ];then
81
-
if [ "$actual_final_value_type"!= array ];then
82
-
bash_object.util.die 'ERROR_VALUE_INCORRECT_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
83
-
return
84
-
fi
85
-
# TODO: currently extraneous, but needed after 'zerocopy' implementation
86
-
elif [ "$final_value_type"== string ];then
87
-
if [ "$actual_final_value_type"!= string ];then
88
-
bash_object.util.die 'ERROR_VALUE_INCORRECT_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
bash_object.util.die 'ERROR_VALUE_INCORRECT_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
82
+
return
83
+
fi
84
+
elif [ "$final_value_type"== string ];then
85
+
if [ "$actual_final_value_type"!= string ];then
86
+
bash_object.util.die 'ERROR_VALUE_INCORRECT_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
0 commit comments