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

rgetserver: Fix vanity URL import path #38

Closed brianredbeard closed 5 years ago

brianredbeard commented 5 years ago

It appears that some time between 4c7b2f3abda833c465f3ac25680c99d2522caeaf and 3eb5112294a0d2dd560fe7ed5fafb7c90268c860 that import path (1) may have mutated. In most packages the import path is set to the form:

go.merklecounty.com/rget/{package}

while prior to this commit the path specifically for rgetserver is:

go.merklecounty.com/{package}

This was discovered when attempting to build a modified version while working on #13 and running into the following error:

rget/cmd/server.go:33:2: code in directory /home/bharrington/Projects/golang/src/go.merklecounty.com/rget/rgetserver expects import "go.merklecounty.com/rgetserver"
philips commented 5 years ago

thanks