license_path

in lib/licensee/commands/license_path.rb [4:15]


  def license_path(_path)
    if project.license_file
      if remote?
        say project.license_file.path
      else
        say File.expand_path project.license_file.path
      end
    else
      exit 1
    end
  end