From 22f936ed7ab712a299633beeb1e20f38dfa3184e Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Mon, 25 Jun 2018 15:13:24 -0700 Subject: [PATCH] Fixed gitIsDirty task. --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 9122465..d6cc150 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -107,7 +107,7 @@ tasks { val gitIsDirty by creating(Exec::class) { description = "Fails if git has uncommitted changes." group = PublishingPlugin.PUBLISH_TASK_GROUP - commandLine("git", "diff-index", "--quiet", "--HEAD", "--") + commandLine("git", "diff-index", "--quiet", "HEAD", "--") } val gitTag by creating(Exec::class) {