From fc14dee1beb9be2f83d74734064015a1a61018e7 Mon Sep 17 00:00:00 2001 From: Alex Malykh <49870662+ysomad@users.noreply.github.com> Date: Thu, 23 Nov 2023 18:34:47 +0400 Subject: [PATCH] hardcoded @develop --- lua/gopher/installer.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lua/gopher/installer.lua b/lua/gopher/installer.lua index 8584e78..0961d7e 100644 --- a/lua/gopher/installer.lua +++ b/lua/gopher/installer.lua @@ -17,7 +17,7 @@ local latest_tag = "@latest" local tags = { gomodifytags = latest_tag, impl = latest_tag, - gotests = c_gotests.tag, + gotests = "@develop", iferr = latest_tag, dlv = latest_tag, } @@ -25,7 +25,6 @@ local tags = { ---@param pkg string local function install(pkg) local url = urls[pkg] .. tags[pkg] - u.notify("YEEET: " .. url) r.sync(c.go, { args = { "install", url }, on_exit = function(data, status)