summaryrefslogtreecommitdiff
path: root/crashbox-server/src/main/scala/io/crashbox/ci/Source.scala
diff options
context:
space:
mode:
Diffstat (limited to 'crashbox-server/src/main/scala/io/crashbox/ci/Source.scala')
-rw-r--r--crashbox-server/src/main/scala/io/crashbox/ci/Source.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/crashbox-server/src/main/scala/io/crashbox/ci/Source.scala b/crashbox-server/src/main/scala/io/crashbox/ci/Source.scala
deleted file mode 100644
index dffb5ea..0000000
--- a/crashbox-server/src/main/scala/io/crashbox/ci/Source.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-package io.crashbox.ci
-
-import java.io.File
-import java.net.URL
-
-import scala.concurrent.Future
-
-import org.eclipse.jgit.api.Git
-
-trait Source { self: Core =>
-
- def fetchSource(from: URL, to: File): Future[File] =
- Future {
- log.debug(s"Cloning git repo from $from to $to")
- Git.cloneRepository.setURI(from.toURI.toString).setDirectory(to).call()
- to
- }(blockingDispatcher)
-
-}