From 7364fdff6eec6d6701c76b05a12fad0bf30425fc Mon Sep 17 00:00:00 2001 From: vantezzen Date: Sun, 8 Mar 2020 10:34:16 +0100 Subject: Revert to using the standart file comparison function --- scripts/verify-all.js | 6 ------ 1 file changed, 6 deletions(-) (limited to 'scripts') diff --git a/scripts/verify-all.js b/scripts/verify-all.js index da8b82f..b3a559d 100644 --- a/scripts/verify-all.js +++ b/scripts/verify-all.js @@ -61,12 +61,6 @@ const decompress = (src, dest) => new Promise((resolve, reject) => { compareContent: true, // Don't fail because of DS_Store files excludeFilter: '.DS_Store', - compareFileAsync: async (path1, stat1, path2, stat2, options) => { - const f1 = await fs.readFile(path1, 'utf-8'); - const f2 = await fs.readFile(path2, 'utf-8'); - - return f1 === f2; - } }); if (compare.same) { -- cgit v1.2.3-54-g00ecf