Skip to content

Commit d4e06a0

Browse files
committed
Fix broken code in postMake
1 parent 39a54eb commit d4e06a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.forge.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
results.forEach(result => {
2727
const artifactPath = result.artifacts[0];
2828
console.log(`Artifact for ${result.arch}/${result.platform} packaged to: ${artifactPath}`);
29-
if (artifactPath.contains("squirrel.windows")) {
29+
if (artifactPath.includes("squirrel.windows")) {
3030
artifactPath = artifactPath + path.sep + "github-pr-tool.exe";
3131
}
3232
const pathParts = artifactPath.split(".");

0 commit comments

Comments
 (0)