Skip to content

Commit

Permalink
workie ????
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxikle committed Jun 13, 2024
1 parent ce8f04a commit ed18fa3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ publishing {
var u = System.getenv("REPO_USERNAME")
var p = System.getenv("REPO_PASSWORD")

if (u.isEmpty()) {
if (u == null || u.isEmpty()) {
u = "no-value-provided"
}
if (p.isEmpty()) {
if (p == null || p.isEmpty()) {
p = "no-value-provided"
}

Expand Down

0 comments on commit ed18fa3

Please sign in to comment.