summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2019-07-08 07:44:47 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2019-07-08 07:44:47 +0800
commit640b8a9d2271b4e07e451345caf9dfffd6aed64d (patch)
tree736995816de1876469ed82f9c9914aa8f5ab6c2c /build.sc
parent901092329b555aa183a78bb6232fd8370fd69ed8 (diff)
downloadmill-640b8a9d2271b4e07e451345caf9dfffd6aed64d.tar.gz
mill-640b8a9d2271b4e07e451345caf9dfffd6aed64d.tar.bz2
mill-640b8a9d2271b4e07e451345caf9dfffd6aed64d.zip
fix
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc8
1 files changed, 1 insertions, 7 deletions
diff --git a/build.sc b/build.sc
index ed15bdbd..7606145e 100755
--- a/build.sc
+++ b/build.sc
@@ -618,7 +618,7 @@ def launcher = T{
millBootstrapGrepPrefix + publishVersion()._2
)
)
- T.ctx().dest / "mill"
+ PathRef(T.ctx().dest / "mill")
}
val isMasterCommit = {
@@ -676,10 +676,4 @@ def uploadToGithub(authKey: String) = T.command{
upload.apply(assembly().path, releaseTag, label + "-assembly", authKey)
upload.apply(launcher().path, releaseTag, label, authKey)
-
- val bootstrapScript = T.ctx().dest / "mill-bootstrap"
-
- os.write(bootstrapScript, millBootstrapString())
-
- upload.apply(bootstrapScript, releaseTag, label + "-bootstrap", authKey)
}