From 545a962b581baae8f99536c35cde77fe4c26748b Mon Sep 17 00:00:00 2001 From: Jihoon Kim Date: Tue, 7 Nov 2023 15:29:45 +0900 Subject: [PATCH] Use sbt result value --- docs/build-tools/sbt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build-tools/sbt.md b/docs/build-tools/sbt.md index fddeee9f7e..20b75e7a00 100644 --- a/docs/build-tools/sbt.md +++ b/docs/build-tools/sbt.md @@ -112,9 +112,9 @@ customize the result of the `bloopGenerate` task (which is scoped at the configu val foo = project .settings( // Bloop will not generate a target for the compile configuration of `foo` - bloopGenerate in Compile := None, + bloopGenerate in Compile := Value(None), // Bloop will not generate a target for the test configuration of `foo` - bloopGenerate in Test := None, + bloopGenerate in Test := Value(None), ) ```