Skip to content

Commit

Permalink
Fix java build (#709)
Browse files Browse the repository at this point in the history
In #703 we fixed the android java build, but forgot that java also
needed to be updated.
  • Loading branch information
Hinton authored Apr 12, 2024
1 parent 7e1a3cb commit b611974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion languages/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repositories {
def branchName = "git branch --show-current".execute().text.trim()

if (branchName == "main") {
def content = ['grep', '-o', '^version = ".*"', '../../crates/bitwarden/Cargo.toml'].execute().text.trim()
def content = ['grep', '-o', '^version = ".*"', '../../Cargo.toml'].execute().text.trim()
def match = ~/version = "(.*)"/
def matcher = match.matcher(content)
matcher.find()
Expand Down

0 comments on commit b611974

Please sign in to comment.