From dc7b0285cc0370109f2f6408510ad9c8aa6f618c Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 14 Feb 2011 11:32:38 -0800 Subject: [PATCH] Made the default package "template" rather than improving, and read it from the ORGANIZATION env variable if set. --- bin/sbt-setup | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/bin/sbt-setup b/bin/sbt-setup index 9a8f5e577..f86037929 100755 --- a/bin/sbt-setup +++ b/bin/sbt-setup @@ -3,7 +3,8 @@ PROJECT="$1" -ORGANIZATION="improving" +DEFAULT_PACKAGE="template" +PACKAGE=${ORGANIZATION:-$DEFAULT_PACKAGE} SCALA_VERSION="2.8.1" SCALACHECK_VERSION="1.8" SPECS_VERSION="1.6.7" @@ -55,7 +56,7 @@ EOF cat > project/build.properties < src/main/scala/Main.scala < src/test/scala/TemplateSpec.scala <