Skip to content

Commit

Permalink
build: Fix version detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Feb 21, 2024
1 parent 7513519 commit 2ec696d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
}

group = 'org.fulib'
version = 'git describe --tags'.execute().text[1..-2] // strip v and \n
version = 'git describe --tags'.execute([], rootDir).text[1..-2] // strip v and \n
description = '''fulibTools is a library for testing that complements the fulib (https://github.com/fujaba/fulib) code generator.
It provides features like class and object diagrams as well as a mechanism for automatically updating code snippets in documentation.'''

Expand Down

0 comments on commit 2ec696d

Please sign in to comment.