aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nimterop/cimport.nim4
1 files changed, 3 insertions, 1 deletions
diff --git a/nimterop/cimport.nim b/nimterop/cimport.nim
index ce21af2..3d337c7 100644
--- a/nimterop/cimport.nim
+++ b/nimterop/cimport.nim
@@ -59,8 +59,10 @@ proc getFileDate(fullpath: string): string =
cmd =
when defined(Windows):
&"cmd /c for %a in ({fullpath.quoteShell}) do echo %~ta"
- else:
+ elif defined(Linux):
&"stat -c %y {fullpath.quoteShell}"
+ elif defined(OSX):
+ &"stat -f %m {fullpath.quoteShell}"
(result, ret) = gorgeEx(cmd)