Skip to content

Commit

Permalink
Merge pull request #184 from janvennemann/TIMOB-24539
Browse files Browse the repository at this point in the history
[TIMOB-24539] Process .aar files in series
  • Loading branch information
hansemannn committed Jun 22, 2017
2 parents a2351ba + 64f1e7c commit ecb2193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/plugins/hyperloop/hooks/android/hyperloop.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ exports.cliVersion = '>=3.2';
},
// Handle AARs
function (next) {
async.each(aarFiles, function (file, cb) {
async.eachSeries(aarFiles, function (file, cb) {
handleAAR(file, function (err, foundJars) {
if (err) {
return cb(err);
Expand Down

0 comments on commit ecb2193

Please sign in to comment.