Skip to content

Commit 7c84f5f

Browse files
committed
fix: Installation Has Failed - Seems to be an issue with the RELEASES file
Closes #534
1 parent d9ea506 commit 7c84f5f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ matrix:
66
env: NODE_VERSION=6
77

88
- os: osx
9-
env: TEST_FILES=osxPackagerTest,CodeSignTest NODE_VERSION=4
9+
env: TEST_FILES=macPackagerTest,CodeSignTest NODE_VERSION=4
1010

1111
language: c
1212

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"deep-assign": "^2.0.0",
6969
"electron-osx-sign-tf": "0.6.0",
7070
"electron-packager-tf": "~7.4.0",
71-
"electron-winstaller-fixed": "~2.11.4",
71+
"electron-winstaller-fixed": "~2.11.5",
7272
"fs-extra-p": "^1.0.3",
7373
"hosted-git-info": "^2.1.5",
7474
"image-size": "^0.5.0",

test/src/helpers/runTests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function runTests(): BluebirdPromise<any> {
150150
console.log(`Test files for node ${circleNodeIndex}: ${args.join(", ")}`)
151151
}
152152
else if (process.platform === "win32") {
153-
args.push("test/out/*.js", "!test/out/osxPackagerTest.js", "!test/out/linuxPackagerTest.js", "!test/out/CodeSignTest.js", "!test/out/ArtifactPublisherTest.js", "!test/out/httpRequestTest.js")
153+
args.push("test/out/*.js", "!test/out/macPackagerTest.js", "!test/out/linuxPackagerTest.js", "!test/out/CodeSignTest.js", "!test/out/ArtifactPublisherTest.js", "!test/out/httpRequestTest.js")
154154
}
155155

156156
return utilSpawn(path.join(rootDir, "node_modules", ".bin", "ava"), args, {

test/src/osxPackagerTest.ts renamed to test/src/macPackagerTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ test.ifOsx("custom mas", () => {
5656
platformPackagerFactory: (packager, platform, cleanupTasks) => platformPackager = new CheckingOsXPackager(packager, cleanupTasks),
5757
devMetadata: {
5858
build: {
59-
osx: {
59+
mac: {
6060
target: ["mas"],
6161
identity: "Test Test",
6262
},
@@ -85,7 +85,7 @@ test.ifOsx("entitlements in the package.json", () => {
8585
platformPackagerFactory: (packager, platform, cleanupTasks) => platformPackager = new CheckingOsXPackager(packager, cleanupTasks),
8686
devMetadata: {
8787
build: {
88-
osx: {
88+
mac: {
8989
entitlements: "osx-entitlements file path",
9090
entitlementsInherit: "osx-entitlementsInherit file path",
9191
}

test/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"src/helpers/runTests.ts",
7676
"src/httpRequestTest.ts",
7777
"src/linuxPackagerTest.ts",
78-
"src/osxPackagerTest.ts",
78+
"src/macPackagerTest.ts",
7979
"src/RepoSlugTest.ts",
8080
"src/winPackagerTest.ts"
8181
]

0 commit comments

Comments
 (0)