# File lib/bee.rb, line 458
    def run_target(target, dry=false)
      error "Target '#{target}' not found" if not @hash[target]
      if not @already_run.include?(target)
        @already_run << target
        @hash[target].last.run(dry)
      end
    end