diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2018-08-01 16:19:29 -0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-08-02 01:19:29 +0200 |
commit | 674bd7bfad100a07e051e0a310bcf0a64c355a79 (patch) | |
tree | 7dae73bfecc37638e9d014608389b60b555e5521 | |
parent | 8f4c5a8955594b4f2dc31f9629af9ad3d4780c2c (diff) | |
download | Nim-674bd7bfad100a07e051e0a310bcf0a64c355a79.tar.gz |
fix wrong arch defined(osx) (#8492)
-rw-r--r-- | tests/stdlib/tos.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stdlib/tos.nim b/tests/stdlib/tos.nim index 6ccc29bf6..10f439dfa 100644 --- a/tests/stdlib/tos.nim +++ b/tests/stdlib/tos.nim @@ -145,7 +145,7 @@ else: echo getLastModificationTime("a") == tm removeFile("a") -when defined(Linux) or defined(osx): +when defined(posix): block normalizedPath: block relative: |