Bug/Typo in JS file: "/product-icon-theme-sample/build/updateFont.js" @Line #33 (Fixes #650)

This commit is contained in:
Miguel Solorio
2022-06-14 15:55:13 -07:00
parent 7bf15478bf
commit 43013770f9

View File

@ -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);
}
}