bin/reap-scm-branch in reap-9.3.5 vs bin/reap-scm-branch in reap-9.4.0
- old
+ new
@@ -1,7 +1,18 @@
#!/usr/bin/env ruby
require 'reap/application'
-app = Reap::Application.new
+HELP = <<-END
+Usage: #{File.basename($0)} [options]
-app.scm_branch
+Branch the project via a supported source control manager
+(currently only SVN is supported).
+END
+
+if ARGV.include?('--help')
+ puts HELP
+else
+ app = Reap::Application.new
+ app.scm_branch
+end
+