Skip to content

Commit

Permalink
fix: Installation Has Failed - Seems to be an issue with the RELEASES…
Browse files Browse the repository at this point in the history
… file

Closes #534
  • Loading branch information
develar committed Jun 23, 2016
1 parent d9ea506 commit 7c84f5f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ matrix:
env: NODE_VERSION=6

- os: osx
env: TEST_FILES=osxPackagerTest,CodeSignTest NODE_VERSION=4
env: TEST_FILES=macPackagerTest,CodeSignTest NODE_VERSION=4

language: c

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"deep-assign": "^2.0.0",
"electron-osx-sign-tf": "0.6.0",
"electron-packager-tf": "~7.4.0",
"electron-winstaller-fixed": "~2.11.4",
"electron-winstaller-fixed": "~2.11.5",
"fs-extra-p": "^1.0.3",
"hosted-git-info": "^2.1.5",
"image-size": "^0.5.0",
Expand Down
2 changes: 1 addition & 1 deletion test/src/helpers/runTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function runTests(): BluebirdPromise<any> {
console.log(`Test files for node ${circleNodeIndex}: ${args.join(", ")}`)
}
else if (process.platform === "win32") {
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")
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")
}

return utilSpawn(path.join(rootDir, "node_modules", ".bin", "ava"), args, {
Expand Down
4 changes: 2 additions & 2 deletions test/src/osxPackagerTest.ts → test/src/macPackagerTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ test.ifOsx("custom mas", () => {
platformPackagerFactory: (packager, platform, cleanupTasks) => platformPackager = new CheckingOsXPackager(packager, cleanupTasks),
devMetadata: {
build: {
osx: {
mac: {
target: ["mas"],
identity: "Test Test",
},
Expand Down Expand Up @@ -85,7 +85,7 @@ test.ifOsx("entitlements in the package.json", () => {
platformPackagerFactory: (packager, platform, cleanupTasks) => platformPackager = new CheckingOsXPackager(packager, cleanupTasks),
devMetadata: {
build: {
osx: {
mac: {
entitlements: "osx-entitlements file path",
entitlementsInherit: "osx-entitlementsInherit file path",
}
Expand Down
2 changes: 1 addition & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"src/helpers/runTests.ts",
"src/httpRequestTest.ts",
"src/linuxPackagerTest.ts",
"src/osxPackagerTest.ts",
"src/macPackagerTest.ts",
"src/RepoSlugTest.ts",
"src/winPackagerTest.ts"
]
Expand Down

0 comments on commit 7c84f5f

Please sign in to comment.