File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -615,6 +615,8 @@ mod_renames=(
615
615
[mi_http]=mi_json:1540473075: # old_module:new_module_since:old_module_until
616
616
[mi_html]=mi_http::1540473075
617
617
[event_stream]=event_jsonrpc
618
+ [b2b_logic]=b2b_logic:1605638778
619
+ [b2b_logic_xml]=b2b_logic::1605638778
618
620
)
619
621
620
622
mk_git_handle () {
@@ -715,8 +717,10 @@ _count_module_changes() {
715
717
local old_mod=" ${arr[0]} " ; local since=" ${arr[1]} " ; local until=" ${arr[2]} "
716
718
unset IFS
717
719
718
- # this trick helps deal with the mi_html->mi_http, mi_http->mi_json rename
719
- [ -z " $3 " -o -z " $since " ] && \
720
+ # deal with renames, e.g.:
721
+ # * mi_html->mi_http, mi_http->mi_json
722
+ # * b2b_logic->b2b_logic_xml, NEW_MOD->b2b_logic
723
+ [[ $1 != $old_mod ]] && [ -z " $3 " -o -z " $since " ] && \
720
724
_count_module_changes " $old_mod " " $2 " " recurse" " $until "
721
725
fi
722
726
You can’t perform that action at this time.
0 commit comments