Skip to content

Commit

Permalink
[script] - fix android upload to hockeyapp
Browse files Browse the repository at this point in the history
  • Loading branch information
timkim committed Oct 30, 2017
1 parent d1b99d7 commit 680039f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/script/hockey-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var buildPath;
if (process.env.BUILDKITE) {
buildPath = path.join(projectRoot, 'platforms', 'ios', 'build', 'device', 'PG Nightly.ipa');
} else if (process.env.CIRCLECI) {
buildPath = path.join(projectRoot, 'platforms', 'android', 'build', 'outputs', 'apk', 'android-release.apk');
buildPath = path.join(projectRoot, 'platforms', 'android', 'build', 'outputs', 'apk', 'android-debug.apk');
} else if(process.env.APPVEYOR) {
buildPath = path.join(projectRoot, 'platforms', 'wp8', 'Bin', 'Release', 'CordovaAppProj_Release_AnyCPU_new.xap');
}
Expand Down

0 comments on commit 680039f

Please sign in to comment.