ends.bintry_2.11.0.5.2.source-code.util.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bintry_2.11 Show documentation
Show all versions of bintry_2.11 Show documentation
your packages, delivered fresh
The newest version!
package bintry
import dispatch.Req
object Util {
private[bintry] def appendPath(to: Req, path: String) =
(to /: path.split('/')) {
case (req, seg) => if (seg.isEmpty) req else req / seg
}
}