From 08b6d4814355b474ea81125f2b9de952782a0687 Mon Sep 17 00:00:00 2001 From: Cazacu Tudor Date: Fri, 26 Oct 2018 12:05:16 +0300 Subject: [PATCH] Override flavors sources in the given order --- lib/utils/properties.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/properties.js b/lib/utils/properties.js index 873cca8..7f8947f 100644 --- a/lib/utils/properties.js +++ b/lib/utils/properties.js @@ -45,7 +45,7 @@ function readProperties() { if (properties.flavors[f].base) { properties.flavors[f].src = properties.flavors[properties.flavors[f].base].src.concat(properties.flavors[f].src) } else { - properties.flavors[f].src = properties.flavors[f].src.reverse() + properties.flavors[f].src = properties.flavors[f].src } } }