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_ARGUMENTS_INVALID_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
181
185
return
182
186
fi
183
-
elif [ "$final_value_type"== array ];then
187
+
elif [ "$final_value_type"= array ];then
184
188
if [ "$actual_final_value_type"!= array ];then
185
189
bash_object.util.die 'ERROR_ARGUMENTS_INVALID_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
186
190
return
187
191
fi
188
-
elif [ "$final_value_type"== string ];then
192
+
elif [ "$final_value_type"= string ];then
189
193
if [ "$actual_final_value_type"!= string ];then
190
194
bash_object.util.die 'ERROR_ARGUMENTS_INVALID_TYPE'"Argument 'set-$final_value_type' was specified, but a variable with type '$actual_final_value_type' was passed"
0 commit comments