{.deprecated: [existsFile: fileExists].} (#14735)

* {.deprecated: [existsFile: fileExists].}

* s/existsFile/fileExists/ except under deps

* workaround pending #14819

* fix test
This commit is contained in:
Timothee Cour
2020-07-02 07:19:13 -07:00
committed by GitHub
parent 366b9a7e4a
commit dc5a40f3f3
31 changed files with 66 additions and 67 deletions

View File

@@ -20,7 +20,7 @@ proc genBadFileName(limit = 100): string =
var hitLimit = true
for i in 0..100:
if existsFile(result):
if fileExists(result):
result.add("a")
else:
hitLimit = false