Skip to content

Commit

Permalink
FIX old android release path
Browse files Browse the repository at this point in the history
  • Loading branch information
lcaprini authored May 4, 2018
1 parent 59508a4 commit fe7056c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libs/android.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,11 @@ class Android {
if (fs.existsSync(releasePath)) {
return releasePath;
}
// Test for previuos folder structure
// Test for previuoses folders structure
releasePath = path.join(projectPath, './build/outputs/apk/release');
if (fs.existsSync(releasePath)) {
return releasePath;
}
releasePath = path.join(projectPath, './build/outputs/apk');
if (fs.existsSync(releasePath)) {
return releasePath;
Expand Down

0 comments on commit fe7056c

Please sign in to comment.