From f7a97606653eb8722759891394ff57f4b02dd098 Mon Sep 17 00:00:00 2001 From: Samuel Lee Date: Thu, 25 Apr 2024 13:10:18 -0400 Subject: [PATCH] Updated localDevCondaEnv task in build.gradle. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 880961ce46d..63f92a92924 100644 --- a/build.gradle +++ b/build.gradle @@ -684,7 +684,7 @@ task localDevCondaEnv(type: Exec) { dependsOn 'condaEnvironmentDefinition' inputs.file("$buildDir/$pythonPackageArchiveName") workingDir "$buildDir" - commandLine "conda", "env", "create", "--force", "-f", gatkCondaYML + commandLine "conda", "env", "create", "--yes", "-f", gatkCondaYML } task javadocJar(type: Jar, dependsOn: javadoc) {