Skip to content

Commit

Permalink
Fix script version property reference in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
raikbitters committed Dec 19, 2024
1 parent 66ecf8a commit 96e0e42
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 @@ -9,7 +9,7 @@ project.ext {
releaseMode = project.hasProperty("releaseMode") ? project.releaseMode.toBoolean() : false
publishRepo = "https://maven.pkg.github.com/reportportal/commons"
dependencyRepos = ["commons-bom"]
scriptVersion = project.hasProperty("scripts.version") ? project.scriptVersion : "develop"
scriptVersion = project.hasProperty("scripts.version") ? project.scripts.version : "develop"
}

def scriptsUrl = 'https://raw.githubusercontent.com/reportportal/gradle-scripts/' + scriptVersion
Expand Down

0 comments on commit 96e0e42

Please sign in to comment.