Something went wrong while setting issue due date.
scripts/lint-doc.sh has integer return $? with string compare in if
if [ $? == 0 ]
should be
if [ $? -eq 0 ]
Do not update/delete: Banner broadcast message test data
Do not update/delete: Notification broadcast message test data
if [ $? == 0 ]
should be
if [ $? -eq 0 ]
assigned to @Jeismeier