From a0cbb9e48817ac0444d6e59deeb6e1371bd73b01 Mon Sep 17 00:00:00 2001 From: Josh Suereth Date: Thu, 29 Mar 2012 10:06:33 -0400 Subject: [PATCH] Fixed univeral jar so the class files are in the right location. --- project/packaging.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/packaging.scala b/project/packaging.scala index d1f6e1fa5..3a09123a5 100644 --- a/project/packaging.scala +++ b/project/packaging.scala @@ -140,7 +140,7 @@ object Packaging { )}, mappings in Universal <+= (compile in Compile, classDirectory in Compile) map { (c, d) => compile; - (d / "SbtJansiLaunch.class") -> "bin/SbtJansiLaunch.class" + (d / "SbtJansiLaunch.class") -> "bin/classes/SbtJansiLaunch.class" } // TODO - Adapt global `sbt`/`sbt-launch-lib` scripts for universal install... )