From 43013770f949828786d15812fdf022fdd9ed8609 Mon Sep 17 00:00:00 2001 From: Miguel Solorio Date: Tue, 14 Jun 2022 15:55:13 -0700 Subject: [PATCH] Bug/Typo in JS file: "/product-icon-theme-sample/build/updateFont.js" @Line #33 (Fixes #650) --- product-icon-theme-sample/build/updateFont.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/product-icon-theme-sample/build/updateFont.js b/product-icon-theme-sample/build/updateFont.js index ab3ad1e4..4301fe44 100644 --- a/product-icon-theme-sample/build/updateFont.js +++ b/product-icon-theme-sample/build/updateFont.js @@ -30,7 +30,7 @@ async function generateFont() { fs.writeFileSync(dest, result.woff, 'binary'); console.log(`Font created at ${dest}`); } catch (e) { - console.error('Font creation failed.', error); + console.error('Font creation failed.', e); } }