From 318984d4adbb16e44ad09fa24fde9ccd283ecddf Mon Sep 17 00:00:00 2001 From: be5invis Date: Thu, 14 Mar 2024 17:39:47 -0700 Subject: [PATCH] Rename the cache file to reduce space usage --- verdafile.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verdafile.mjs b/verdafile.mjs index 9629c60f3..38ef9ac7b 100644 --- a/verdafile.mjs +++ b/verdafile.mjs @@ -424,7 +424,7 @@ const DistUnhintedTTF = file.make( // Ab-initio build const cacheFileName = `${Math.round(1000 * fi.shape.weight)}-${Math.round(1000 * fi.shape.width)}-` + - `${Math.round(3600 * fi.shape.slopeAngle)}-${fi.shape.slope}`; + `${Math.round(3600 * fi.shape.slopeAngle)}`; const cachePath = `${SHARED_CACHE}/${cacheFileName}.mpz`; const cacheDiffPath = `${charMapPath.dir}/${fn}.cache.mpz`;