# File lib/consular/cli.rb, line 219
      def termfile_path(project = nil)
        if !project || project.empty?
           File.join(options[:root], 'Termfile')
        else
          path = project =~ /\..*/ ? project : project + '.term'
          Consular.global_path path
        end
      end