build跳过参数同步文件

This commit is contained in:
chenzhikai
2025-02-07 10:46:05 +08:00
committed by congzhou2603
parent 79a6851b08
commit ff90331e56

View File

@ -1262,6 +1262,14 @@ bool IsSkipDir(const char * dirName)
if (strlen(dirName) > dirNameLen && strcmp(dirName + dirNameLen, instance_id) != 0)
return true;
}
if (strcmp(dirName, "shared_postgresql.conf") == 0) {
return true;
}
if (strcmp(dirName, "shared_pg_hba.conf") == 0) {
return true;
}
}
return false;