From d23d14897a6249dd6b03c7fc525f42bfac2b6700 Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Sat, 22 Jun 2013 00:15:07 +0100 Subject: Symlinks are now expanded in os.getAppFilename on Mac OS X. --- lib/pure/os.nim | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'lib/pure') diff --git a/lib/pure/os.nim b/lib/pure/os.nim index bf00afed2..de4893f8c 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -1368,6 +1368,9 @@ when defined(macosx): proc getAppFilename*(): string {.rtl, extern: "nos$1", tags: [FReadIO].} = ## Returns the filename of the application's executable. + ## + ## This procedure will resolve symlinks. + ## ## **Note**: This does not work reliably on BSD. # Linux: /proc//exe @@ -1397,6 +1400,8 @@ proc getAppFilename*(): string {.rtl, extern: "nos$1", tags: [FReadIO].} = result = newString(int(size)) if getExecPath2(result, size): result = "" # error! + if result.len > 0: + result = result.expandFilename else: # little heuristic that may work on other POSIX-like systems: result = string(getEnv("_")) -- cgit 1.4.1-2-gfad0