Skip to content

Commit 85debda

Browse files
authored
Merge pull request #508 from dfg-nota/bugfix
Fix bug in build.gradle
2 parents 9e7b846 + 8fd55e4 commit 85debda

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)