We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7fe602 commit 5bb8b62Copy full SHA for 5bb8b62
execution_chain/version.nim
@@ -18,7 +18,10 @@ const
18
19
static:
20
doAssert(nimbusRevision.len == 8, "nimbusRevision must consist of 8 characters")
21
- doAssert(nimbusRevision.allIt(it in HexDigits), "nimbusRevision should contains only hex chars")
+ doAssert(
22
+ nimbusRevision.allIt(it in HexDigits),
23
+ "nimbusRevision should contains only hex chars",
24
+ )
25
26
proc gitFolderExists(path: string): bool {.compileTime.} =
27
# walk up parent folder to find `.git` folder
0 commit comments