Shorten the build class a bit

This commit is contained in:
Thibault Duplessis 2012-02-24 03:01:37 +01:00
parent d4b5f7c000
commit b47af6367e

View file

@ -36,12 +36,6 @@ object ApplicationBuild extends Build with Resolvers with Dependencies {
}
object ShellPrompt {
val buildShellPrompt = {
(state: State)
{
val currProject = Project.extract(state).currentProject.id
"%s> ".format(currProject)
}
}
val buildShellPrompt =
(state: State) "%s> ".format(Project.extract(state).currentProject.id)
}