From fe2880419b95daeb76193e62ad464cfafcfcf55b Mon Sep 17 00:00:00 2001 From: Robin Huang Date: Wed, 18 Sep 2024 03:58:05 +0900 Subject: [PATCH] fix(publisher-s3): typo makes argument not match the variable name (#194) --- config/publishers/s3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/publishers/s3.md b/config/publishers/s3.md index 0bd73ca..30617fe 100644 --- a/config/publishers/s3.md +++ b/config/publishers/s3.md @@ -59,7 +59,7 @@ To avoid this problem, you can use the `keyResolver` option to generate the S3 k name: '@electron-forge/publisher-s3', config: { // ... - keyResolver: (fileName, platform, arch) => { + keyResolver: (filename, platform, arch) => { return `some-prefix/${platform}/${arch}/${filename}` } // ...