merklecounty / rget

download URLs and verify the contents against a publicly recorded cryptographic log
https://merklecounty.com
Apache License 2.0
205 stars 17 forks source link

Fix copyright on local project files #31

Closed brianredbeard closed 5 years ago

brianredbeard commented 5 years ago

When performing the tasks in #29 (Perform License/Copyright Audit) it was discovered that the following files were missing an assigned copyright:

$ jq '[.files[] | select(.copyrights[].value | contains("NAME HERE")) | {path, "copyright": .copyrights[].value} ] ' rget.json   
[
  {
    "path": "rget/rget/main.go",
    "copyright": "Copyright (c) 2019 NAME HERE"
  },
  {
    "path": "rget/rget/cmd/github.go",
    "copyright": "Copyright (c) 2019 NAME HERE"
  },
  {
    "path": "rget/rget/cmd/root.go",
    "copyright": "Copyright (c) 2019 NAME HERE"
  },
  {
    "path": "rget/rget/cmd/server.go",
    "copyright": "Copyright (c) 2019 NAME HERE"
  },
  {
    "path": "rget/rget/cmd/submit.go",
    "copyright": "Copyright (c) 2019 NAME HERE"
  },
  {
    "path": "rget/rget/cmd/verify.go",
    "copyright": "Copyright (c) 2019 NAME HERE"
  }
]