From a809db85c4803f0ec4da1877bc9f728d166ad65f Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Fri, 26 Jun 2026 03:49:26 +0800 Subject: [PATCH] fix: use go install instead of deprecated go get go get is deprecated in Go 1.17+ for installing executables. Use 'go install package@latest' instead. Fixes issue #21 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b22370a..a79ef9b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Download the [latest version of Subify](https://github.com/matcornic/subify/rele If you use Golang, you can get Subify and its binary directly with : ```shell -go get -u github.com/matcornic/subify +go install github.com/matcornic/subify@latest ``` ### Mac OS