CB-9185 Fix signed release build exception. This closes #193.

This commit is contained in:
Joe Schneider 2015-07-01 03:01:42 -05:00 committed by Nikhil Khandelwal
parent 6b071c0fb2
commit f93c2b161d

View File

@ -74,7 +74,7 @@ function findOutputApksHelper(dir, build_type, arch) {
return /-debug/.exec(candidate) && !/-unaligned|-unsigned/.exec(candidate);
}
if (build_type === 'release') {
return /-release/.exec(candidate) && !/-unaligned/.exec(candidate);
return /-release/.exec(candidate) && !/-unaligned|-unsigned/.exec(candidate);
}
return true;
});