Skip to content

Commit

Permalink
Merge branch 'main' into ThibautChd-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdemaegdt authored Oct 25, 2023
2 parents b4a8523 + e20298c commit 6ee624e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/scripts/check_data_health.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ function checkGeoJsonDataHealth() {
}

// 4 - Check if all done section have a doneAt property
if (properties.status === 'done') {
if (!properties.hasOwnProperty('doneAt')) {
console.error(`Missing key 'doneAt' in LineString properties of file: ${filePath}`);
process.exit(1);
}
}
// if (properties.status === 'done') {
// if (!properties.hasOwnProperty('doneAt')) {
// console.error(`Missing key 'doneAt' in LineString properties of file: ${filePath}`);
// process.exit(1);
// }
// }
}
}
}
Expand Down

0 comments on commit 6ee624e

Please sign in to comment.