Skip to content

Commit

Permalink
Fixing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Nepomuk Seiler committed Feb 21, 2014
1 parent 2302170 commit 4a9708b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sbt-test/debian/test-mapping-helpers/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ linuxPackageMappings in Debian <+= (Keys.normalizedName, target) map { (name, tm

// Consider using mappings in Universal
linuxPackageMappings in Debian += packageDirectoryAndContentsMapping(
file("src/resources/conf") -> "/usr/share/conf"
(baseDirectory.value / "src" / "resources" / "conf") -> "/usr/share/conf"
)
4 changes: 2 additions & 2 deletions src/sbt-test/universal/test-mapping-helpers/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mappings in Universal <+= (packageBin in Compile, sourceDirectory ) map { (_, sr
conf -> "conf/application.conf"
}

TaskKey[Unit]("unzip") <<= (packageBin in Universal) map { (zipFile) =>
TaskKey[Unit]("unzip") <<= (packageBin in Universal, streams) map { (zipFile, streams) =>
val args = Seq(zipFile.getAbsolutePath)
Process("unzip", args) !
Process("unzip", args) ! streams.log
}

0 comments on commit 4a9708b

Please sign in to comment.