From 9d6c8f873537c99c4f97be23fe93d89eb3affc52 Mon Sep 17 00:00:00 2001 From: Graham Date: Thu, 2 Apr 2020 19:10:14 +0100 Subject: [PATCH] Add stdin support to the Gradle :run tasks This is required for the compress and crc32 tasks to be useful. Signed-off-by: Graham --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 73f5ae4015..bf43969676 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,6 +33,7 @@ allprojects { plugins.withType { tasks.named("run") { + standardInput = System.`in` workingDir = rootProject.projectDir } }