Skip to content

Commit

Permalink
remove newline
Browse files Browse the repository at this point in the history
  • Loading branch information
akliuxingyuan committed Jun 12, 2024
1 parent d54eae1 commit 370123f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle/mozconfig.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def projectRootDir = System.getProperty("user.dir")
def json = slurper.parse(new File("${projectRootDir}/mozconfig.json"))

gradle.ext.mozconfig = json
gradle.ext.mozconfig.substs.MOZ_APP_VERSION = file("${projectRootDir}/version.txt").getText('utf-8')
gradle.ext.mozconfig.substs.MOZ_APP_VERSION = file("${projectRootDir}/version.txt").getText('utf-8').replaceAll("\n", "")
gradle.ext.mozconfig.substs.MOZ_ANDROID_FAT_AAR_ARCHITECTURES = true
gradle.ext.mozconfig.substs.MOZ_UPDATE_CHANNEL = 'release'
gradle.ext.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES = true
Expand Down

0 comments on commit 370123f

Please sign in to comment.