Override module when .replace is found

This commit is contained in:
topjohnwu 2019-09-12 16:08:30 -04:00
parent 3f057367e3
commit 86bfb22d4c
1 changed files with 4 additions and 2 deletions

View File

@ -146,9 +146,11 @@ void node_entry::create_module_tree(const char *module) {
if (is_root()) {
// Root nodes should not be replaced
rm_rf(buf);
return;
} else if (status < IS_MODULE) {
// Upgrade current node to current module
this->module = module;
status = IS_MODULE;
}
status = IS_MODULE;
return;
}