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
{deb/rpm}-upgrade: simplify install/upgrade test operations
replace pattern:
# comment about what we are doing that isn't in bb log
if something_might_go_wrong; then
log_err - it went wrong
(missing error capture)
exit 1
to:
bb_log_info "where testing this"
sometime_might_go_wrong
The something_might_go_wrong in the second step will trap
and have all the saving of the failure afterwards leaving
the user with the info of what was being tested to provide
the failure context.
0 commit comments