aboutsummaryrefslogtreecommitdiff
path: root/stage2/GitDependency.scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-03-12 22:55:38 -0400
committerGitHub <noreply@github.com>2017-03-12 22:55:38 -0400
commitbbeb79bc32296c77d5fd21816bf7ab7323ab864a (patch)
tree06e19c3f9117c24e6c6a5e8a95990011a0efe4b3 /stage2/GitDependency.scala
parentc14e288996d2b56b6b06a0624f4f2fca315369c7 (diff)
parent828adac48d0e08766d192c7ce01021083cfc4d67 (diff)
downloadcbt-bbeb79bc32296c77d5fd21816bf7ab7323ab864a.tar.gz
cbt-bbeb79bc32296c77d5fd21816bf7ab7323ab864a.tar.bz2
cbt-bbeb79bc32296c77d5fd21816bf7ab7323ab864a.zip
Merge pull request #429 from cvogt/loop-revamp-2
fix file watching for real
Diffstat (limited to 'stage2/GitDependency.scala')
-rw-r--r--stage2/GitDependency.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/stage2/GitDependency.scala b/stage2/GitDependency.scala
index f6812e4..20e1d36 100644
--- a/stage2/GitDependency.scala
+++ b/stage2/GitDependency.scala
@@ -26,7 +26,8 @@ object GitDependency{
val c = taskCache[Dependency]("checkout").memoize{ checkout( url, ref ) }
DirectoryDependency(
context.copy(
- workingDirectory = subDirectory.map(c / _).getOrElse(c)
+ workingDirectory = subDirectory.map(c / _).getOrElse(c),
+ loop = false
),
pathToNestedBuild: _*
)