Skip to content

Commit

Permalink
fix(): console log hashes for future update analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
agerbig committed Oct 29, 2021
1 parent 6367377 commit 282edc1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions build/check-for-font-updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ async function main() {

let requireUpdate = hashPreUpdate.hash !== hashPostUpdate.hash;
if (!requireUpdate) {
console.log(`No update is required ${hashPreUpdate.hash} != ${hashPostUpdate.hash} == ${hashPreUpdate.hash !== hashPostUpdate.hash}`);
throw new Error("nothing to update")
}
console.log(`an update is required ${hashPreUpdate.hash} != ${hashPostUpdate.hash}`);
Expand Down

0 comments on commit 282edc1

Please sign in to comment.