bin/reap-make-distclean in reap-9.3.5 vs bin/reap-make-distclean in reap-9.4.0

- old
+ new

@@ -1,7 +1,23 @@ #!/usr/bin/env ruby require 'reap/application' -app = Reap::Application.new +HELP = <<-END +Usage: #{File.basename($0)} [options] -app.make_distclean +Reset ext/ contents to "pristine" state. This will +remove and temporary products created by the compile +process, via reap-make-clean, as well as remove all +itermediate object files. + +Run this command if you wish to recompile from scratch. +This command is also executed when running reap-clobber. +END + +if ARGV.include?('--help') + puts HELP +else + app = Reap::Application.new + app.make_distclean +end +