From 798eb32d648213a2149f92888e9c2226a9960420 Mon Sep 17 00:00:00 2001 From: Darko Luketic Date: Mon, 8 Jan 2024 17:13:48 +0100 Subject: [PATCH] nope --- runner/runner.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/runner.go b/runner/runner.go index bada4df..0b5bafc 100644 --- a/runner/runner.go +++ b/runner/runner.go @@ -34,8 +34,8 @@ func (r *Runner) Run() error { return fmt.Errorf("error getting current go version: %s", e) } for _, m := range ms { - fmt.Println(fmt.Sprintf("%s%s", m.RootPath, m.BinaryPath)) - fv, e := getVersionOfFile(fmt.Sprintf("%s%s", m.RootPath, m.BinaryPath)) + fmt.Println(fmt.Sprintf("%s/%s", m.RootPath, m.BinaryPath)) + fv, e := getVersionOfFile(fmt.Sprintf("%s/%s", m.RootPath, m.BinaryPath)) if e != nil { return fmt.Errorf("error getting version of file: %s", e) }