diff options
| -rw-r--r-- | build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 8451fe6..1fb0151 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -51,7 +51,7 @@ val taskStackInit = tasks.create<Exec>("stack-init") { val taskStackBuild = tasks.create<Exec>("stack-build") { - description = "initialize stack from the package.yaml" + description = "build project" group = "Haskell" dependsOn(taskStackInit) @@ -61,7 +61,7 @@ val taskStackBuild = tasks.create<Exec>("stack-build") { val taskStackExec = tasks.create<Exec>("stack-exec") { - description = "initialize stack from the package.yaml" + description = "run project" group = "Haskell" dependsOn(taskStackBuild) |
