get gotests tag from setup()

This commit is contained in:
Alex Malykh 2023-11-23 18:38:41 +04:00
parent fc14dee1be
commit e1db4d4c23

View file

@ -1,5 +1,4 @@
local c = require("gopher.config").commands local c = require("gopher.config").commands
local c_gotests = require("gopher.config").gotests
local r = require "gopher._utils.runner" local r = require "gopher._utils.runner"
local u = require "gopher._utils" local u = require "gopher._utils"
local installer = {} local installer = {}
@ -17,7 +16,7 @@ local latest_tag = "@latest"
local tags = { local tags = {
gomodifytags = latest_tag, gomodifytags = latest_tag,
impl = latest_tag, impl = latest_tag,
gotests = "@develop", gotests = require("gopher.config").gotests.tag,
iferr = latest_tag, iferr = latest_tag,
dlv = latest_tag, dlv = latest_tag,
} }