We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c014c8f commit 6724873Copy full SHA for 6724873
scripts/checks/compare-layout.js
@@ -10,6 +10,7 @@ for (const name in oldLayout) {
10
if (name in newLayout) {
11
const report = getStorageUpgradeReport(oldLayout[name], newLayout[name], {});
12
if (!report.ok) {
13
+ console.log(`Storage layout incompatilibity found in ${name}:`);
14
console.log(report.explain());
15
process.exitCode = 1;
16
}
0 commit comments