From 7062c6a073084bcf89068e8d09c244321f9a7b3d Mon Sep 17 00:00:00 2001 From: hormelcookies <70467971+hormelcookies@users.noreply.github.com> Date: Tue, 1 Sep 2020 12:44:03 -0700 Subject: [PATCH] fix windows builds --- afterpack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afterpack.js b/afterpack.js index befd530..f07a237 100644 --- a/afterpack.js +++ b/afterpack.js @@ -77,7 +77,7 @@ exports.default = async function afterPackHook(context){ resourcesDir = join(context.appOutDir, context.packager.appInfo.productFilename + ".app", "Contents", "Resources") } - const asarAppUnpackedDir = join(resourcesDir + "app.asar.unpacked") + const asarAppUnpackedDir = join(resourcesDir, "app.asar.unpacked") // The Platform-specific build options override the common config, so attempt to use those first. let globPatterns = globalOrPlatformArrayParam(platformFilesParam, globalFilesParam)