summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-31 01:13:59 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2017-12-31 01:21:13 -0800
commit7e8d847b29c733b43ae150d5a199f0a71ee02bf3 (patch)
treea6def0f3cc641d5e456c40ab3d8fdd77bbd2d1f5 /build.sc
parent13f896a36eb275de9784ce3400dde09311afd6bd (diff)
downloadmill-7e8d847b29c733b43ae150d5a199f0a71ee02bf3.tar.gz
mill-7e8d847b29c733b43ae150d5a199f0a71ee02bf3.tar.bz2
mill-7e8d847b29c733b43ae150d5a199f0a71ee02bf3.zip
Split out generic `T.input` tasks from the `T.source` helpers, allowing `T.source` to behave as before but `T.input` can be used for other things. Fixes https://github.com/lihaoyi/mill/issues/77
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sc b/build.sc
index b9f909fb..dfc0e46f 100755
--- a/build.sc
+++ b/build.sc
@@ -108,7 +108,7 @@ val bridges = for{
def sources = T.source {
val path = basePath / 'src
mkdir(path)
- PathRef(path)
+ path
}
def allSources = T{
Seq(PathRef(shared.downloadBridgeSource(T.ctx().dest, crossVersion)))