From b2fdf9e5d5221a88eb606c023e45462e6631f2b9 Mon Sep 17 00:00:00 2001 From: Paul Wilde Date: Thu, 2 Jan 2025 17:39:18 +0000 Subject: [PATCH] update process for windows --- norg/utils/update.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/norg/utils/update.nim b/norg/utils/update.nim index a730b84..d4282be 100644 --- a/norg/utils/update.nim +++ b/norg/utils/update.nim @@ -51,8 +51,8 @@ proc extractUpdate(name, file: string) = proc updateNorg(version: string, j: JsonNode) = let newvers = version[1..^1].replace(".","_") - #let check_file = fmt"norg_{hostOS}_{hostCPU}-{newvers}.tar.gz" - let check_file = fmt"norg_{hostOS}_{newvers}.tar.gz" + let check_file = fmt"norg_{hostOS}_{hostCPU}-{newvers}.tar.gz" + #let check_file = fmt"norg_{hostOS}_{newvers}.tar.gz" var update_found = false for asset in j["assets"].getElems(): let name = asset["name"].getStr()