summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi@dropbox.com>2014-11-26 03:56:36 -0800
committerLi Haoyi <haoyi@dropbox.com>2014-11-26 03:56:36 -0800
commitc00c6caa2f09645f5c0ccf8165d83dc8421a66d2 (patch)
treedcb7904e5dd5a975e89b0099154b6beae3954627 /build.sbt
parentcc3df84442cc78a7af99c793485185829ccdcc4d (diff)
downloadhands-on-scala-js-c00c6caa2f09645f5c0ccf8165d83dc8421a66d2.tar.gz
hands-on-scala-js-c00c6caa2f09645f5c0ccf8165d83dc8421a66d2.tar.bz2
hands-on-scala-js-c00c6caa2f09645f5c0ccf8165d83dc8421a66d2.zip
fix java APIs listing
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index d0a2054..154f475 100644
--- a/build.sbt
+++ b/build.sbt
@@ -8,7 +8,6 @@ import scala.scalajs.sbtplugin.ScalaJSPlugin._
import ScalaJSKeys._
val cloneRepos = taskKey[Unit]("Clone stuff from github")
-val pushGithub = taskKey[Unit]("Push stuff to github")
val sharedSettings = Seq(
scalaVersion := "2.11.4",
@@ -100,7 +99,7 @@ lazy val book = Project(
System.setProperty("clone.root", target.value.getAbsolutePath + "/clones")
System.setProperty("output.root", target.value.getAbsolutePath + "/output")
},
- pushGithub := {
+ publish := {
val outputRoot = target.value.getAbsolutePath + "/output"
val repo = Git.init().setDirectory(new File(outputRoot)).call()
val remoteUrl = "https://github.com/lihaoyi/hands-on-scala-js"