diff --git a/README.md b/README.md index 72ca7bd..c86b90d 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,16 @@ No changes made. # Installing +With Go 1.15 and earlier: + +``` +$ go get github.com/bradfitz/embiggen-disk +``` + +With Go 1.16+: + ``` -$ go get github.com/google/embiggen-disk +$ go install github.com/bradfitz/embiggen-disk@latest ``` # Requirements @@ -38,6 +46,4 @@ other Linux architectures. # Disclaimer -This is not an officially supported Google product. - Audit the code and/or snapshot your disk before use if you're worried about losing data. diff --git a/go.mod b/go.mod index 1191966..7890220 100644 --- a/go.mod +++ b/go.mod @@ -1,8 +1,8 @@ -module github.com/google/embiggen-disk +module github.com/bradfitz/embiggen-disk go 1.15 require ( github.com/u-root/u-root v0.0.0-20180806213625-12f9029297cf - golang.org/x/sys v0.0.0-20180727230415-bd9dbc187b6e + golang.org/x/sys v0.0.0-20201112073958-5cba982894dd ) diff --git a/go.sum b/go.sum index 3b3ce8b..68c1ec2 100644 --- a/go.sum +++ b/go.sum @@ -1,4 +1,4 @@ github.com/u-root/u-root v0.0.0-20180806213625-12f9029297cf h1:EEvaBfp7JfttSDsqDibrSFPXga9xuthzkVt9IfatI2w= github.com/u-root/u-root v0.0.0-20180806213625-12f9029297cf/go.mod h1:RYkpo8pTHrNjW08opNd/U6p/RJE7K0D8fXO0d47+3YY= -golang.org/x/sys v0.0.0-20180727230415-bd9dbc187b6e h1:3dQ4fR8k5KugjVKO0oqSd1odxuk2yaE2CIfxWP2WarQ= -golang.org/x/sys v0.0.0-20180727230415-bd9dbc187b6e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20201112073958-5cba982894dd h1:5CtCZbICpIOFdgO940moixOPjc0178IU44m4EjOO5IY= +golang.org/x/sys v0.0.0-20201112073958-5cba982894dd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=