Skip to content

Commit 8fd55e4

Browse files
committed
fix bug in build.gradle
1 parent 9e7b846 commit 8fd55e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-artifacts/project-template-gradle/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def updateProductFlavorsContent(flavor, dimensionName, oldContent) {
261261

262262
def closingQuotes = oldContent.indexOf('"', openingQuoutes + 1);
263263
if(closingQuotes == -1) {
264-
closingQuotes = closingQuotes.indexOf("'", openingQuoutes + 1);
264+
closingQuotes = oldContent.indexOf("'", openingQuoutes + 1);
265265
}
266266

267267
index = closingQuotes + 1;

0 commit comments

Comments
 (0)