You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/10/31 23:47:56 UTC

svn commit: r1404401 - /buildr/trunk/lib/buildr/core/application.rb

Author: donaldp
Date: Wed Oct 31 22:47:56 2012
New Revision: 1404401

URL: http://svn.apache.org/viewvc?rev=1404401&view=rev
Log:
Remove unexpected message prefix

Modified:
    buildr/trunk/lib/buildr/core/application.rb

Modified: buildr/trunk/lib/buildr/core/application.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/application.rb?rev=1404401&r1=1404400&r2=1404401&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/application.rb (original)
+++ buildr/trunk/lib/buildr/core/application.rb Wed Oct 31 22:47:56 2012
@@ -388,7 +388,7 @@ module Buildr
 
     def ask_generate_buildfile
       source, fromEclipse = choose do |menu|
-        menu.header = "ngng: To use Buildr you need a buildfile. Do you want me to create one?"
+        menu.header = "To use Buildr you need a buildfile. Do you want me to create one?"
         menu.choice("From eclipse .project files") { [Dir.pwd, true] } if Generate.has_eclipse_project?
         menu.choice("From Maven2 POM file") { ['pom.xml', false] } if File.exist?('pom.xml')
         menu.choice("From directory structure") { [Dir.pwd, false] }