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 c2ef47d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
distribution: 'zulu'
java-version: '17'

- run: ./gradlew lint
- run: git describe --tags
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 c2ef47d

Please sign in to comment.