From 053c666b45ca7aba36804797d98c6bc27430f7ce Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Fri, 7 Feb 2025 09:19:13 +0000 Subject: [PATCH] docs: update scripts/notarize.cjs. enviroment -> environment Signed-off-by: Ikko Eltociear Ashimine --- scripts/notarize.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/notarize.cjs b/scripts/notarize.cjs index 53c37c9..197793f 100644 --- a/scripts/notarize.cjs +++ b/scripts/notarize.cjs @@ -5,7 +5,7 @@ exports.default = async function notarizing(context) { const {electronPlatformName, appOutDir} = context; console.log(` • Notarization Start`); // We skip notarization if the process is not running on MacOS and - // if the enviroment variable SKIP_NOTARIZE is set to `true` + // if the environment variable SKIP_NOTARIZE is set to `true` // This is useful for local testing where notarization is useless if ( electronPlatformName !== "darwin" || -- Gitee