Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisguse committed Dec 6, 2024
1 parent 05fbfcb commit b1b2d36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def getVersionName = { ->
}
return stdout.toString().trim()
} catch (ignored) {
throw new GradleException('VersionName could not be read:' + ignored.message)
throw ignored
}
}

Expand All @@ -39,7 +39,7 @@ def getVersionCode = { ->
}
return Integer.valueOf(stdout.toString().trim())
} catch (ignored) {
throw new GradleException('VersionCode could not be read:' + ignored.message)
throw ignored
}
}

Expand Down

0 comments on commit b1b2d36

Please sign in to comment.