Skip to content

Commit

Permalink
Fix apt pool location
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldraper committed May 31, 2017
1 parent 686ef09 commit 909ca07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ val bintrayDescriptor = taskKey[File]("Descriptor for TravisCI release to Bintra

bintrayDescriptor in (ThisBuild, Debian) := {
def files(target: File, distribution: String) = Json.obj(
"includePattern" -> s"${target.relativeTo(baseDirectory.value).get}(.)(.*\\.deb)",
"includePattern" -> s"${target.relativeTo(baseDirectory.value).get}/.*\\.deb",
"matrixParams" -> Json.obj(
"deb_architecture" -> "amd64,i386",
"deb_component" -> "main",
"deb_distribution" -> distribution
),
"uploadPattern" -> "pool/stable/$1/$1$2"
"uploadPattern" -> s"pool/p/piezo-admin_${distribution}_${version.value}_all.deb"
)
val json = Json.obj(
"files" -> Json.arr(
Expand Down

0 comments on commit 909ca07

Please sign in to comment.