# File lib/puppet/module/tool/applications/builder.rb, line 15
      def run
        load_modulefile!
        create_directory
        copy_contents
        add_metadata
        header "Building #{@path} for release"
        tar
        gzip
        relative = Pathname.new(File.join(@pkg_path, filename('tar.gz'))).relative_path_from(Pathname.new(Dir.pwd))
        # TODO Implement "release" feature.
        ### say "Done. Now you probably want to:\n  $ puppet-module release #{relative}"
        say "Done. Built: #{relative}"
      end