From 98fbb13843103280e79749d788aeafe55a4eb0c7 Mon Sep 17 00:00:00 2001 From: Tobias Roeser Date: Fri, 5 May 2023 22:33:43 +0200 Subject: [PATCH] Also watch the MILL_DEV_VERSION file --- build.sc | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sc b/build.sc index 49e06a6..4ab4395 100644 --- a/build.sc +++ b/build.sc @@ -74,6 +74,7 @@ object Deps_0_6 extends Deps { val latestDeps: Seq[Deps] = { val path = baseDir / "MILL_DEV_VERSION" + interp.watch(path) println(s"Checking for file ${path}") if (os.exists(path)) { Try { Seq(new Deps_latest(os.read(path).trim())) }