From ca0660b07e5b703e8eb34dc9f763a8e9da6f2696 Mon Sep 17 00:00:00 2001 From: Slava <20563034+veaceslavdoina@users.noreply.github.com> Date: Tue, 30 Jan 2024 19:58:55 +0200 Subject: [PATCH] Use default short commit length for Codex revision (#690) --- codex/conf.nim | 1 - 1 file changed, 1 deletion(-) diff --git a/codex/conf.nim b/codex/conf.nim index 197df56c..d375b740 100644 --- a/codex/conf.nim +++ b/codex/conf.nim @@ -293,7 +293,6 @@ proc getCodexVersion(): string = proc getCodexRevision(): string = # using a slice in a static context breaks nimsuggest for some reason var res = strip(staticExec("git rev-parse --short HEAD")) - res.setLen(6) return res proc getNimBanner(): string =