summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
}