diff options
| -rw-r--r-- | nimterop.nimble | 2 | ||||
| -rw-r--r-- | nimterop/getters.nim | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/nimterop.nimble b/nimterop.nimble index 1014e66..565c3e4 100644 --- a/nimterop.nimble +++ b/nimterop.nimble @@ -1,6 +1,6 @@ # Package -version = "0.1.0" +version = "0.2.0" author = "genotrance" description = "C/C++ interop for Nim" license = "MIT" diff --git a/nimterop/getters.nim b/nimterop/getters.nim index 1954623..54040c0 100644 --- a/nimterop/getters.nim +++ b/nimterop/getters.nim @@ -2,7 +2,7 @@ import dynlib, macros, os, sequtils, sets, strformat, strutils, tables, times import regex -import "."/[build, globals, plugin, treesitter/api] +import "."/[build, compat, globals, plugin, treesitter/api] const gReserved = """ addr and as asm @@ -403,6 +403,6 @@ proc loadPlugin*(gState: State, sourcePath: string) = proc expandSymlinkAbs*(path: string): string = try: - result = path.expandSymlink().absolutePath(path.parentDir()).normalizedPath() + result = path.expandSymlink().absolutePath(path.parentDir()).myNormalizedPath() except: result = path |
