humanmade / go-anonymize-mysqldump

Allows you to pipe data from mysqldump or an SQL file and anonymize it.
GNU General Public License v3.0
60 stars 26 forks source link

Installation example doesn't work ("not in gzip format") #15

Closed the-bass closed 2 years ago

the-bass commented 2 years ago

I just tried to follow the installation instructions for Mac. I ran

curl -OL https://github.com/humanmade/go-anonymize-mysqldump/releases/download/latest/go-anonymize-mysqldump_darwin_amd64.gz

and then tried

gunzip go-anonymize-mysqldump_darwin_amd64.gz

However, the latter returns

gunzip: go-anonymize-mysqldump_darwin_amd64.gz: not in gzip format
svandragt commented 2 years ago

Hi @the-bass it looks like links to zip files do not work for the latest version but if you go to https://github.com/humanmade/go-anonymize-mysqldump/releases/latest it will redirect to the latest version (0.3.0) and you can use any of the links listed on the releases page. For you I think that's https://github.com/humanmade/go-anonymize-mysqldump/releases/download/0.3.0/go-anonymize-mysqldump_darwin_amd64.gz

the-bass commented 2 years ago

That did the trick! Thanks a lot, @svandragt!