diff --git a/README.md b/README.md index 1b783df..1dfad6b 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The easiest install is to download the release for your operating system and architecture and run it. ```bash -curl -fsSL https://github.com/shakefu/home/releases/download/v1.1.1/home-v1.1.1-darwin-amd64.tar.gz | tar xz > home +curl -fsSL https://github.com/shakefu/home/releases/download/v1.1.2/home-v1.1.2-darwin-amd64.tar.gz | tar xz > home ./home setup ``` diff --git a/VERSION b/VERSION index 56130fb..0f1acbd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v1.1.1 +v1.1.2 diff --git a/home.go b/home.go index e0f69c5..ffb2568 100644 --- a/home.go +++ b/home.go @@ -60,7 +60,7 @@ func main() { name = filepath.Base(name) oper := runtime.GOOS arch := runtime.GOARCH - version := embeddedFile("VERSION") + version := string(embeddedFile("VERSION")) // Get a safe temp directory to use for downloads, etc. tmpdir, err = os.MkdirTemp("", name+"-")