diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-04-30 02:56:19 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-04-30 02:56:19 +0200 |
commit | 87f548c5f4027a0faf57acf0878f7c5db382222c (patch) | |
tree | e8258cdedb86bc75cf85f3419f117252f2ba50b5 /tests/manyloc/nake | |
parent | 0fad659bf72a48d076978655dd23fe369c2d232e (diff) | |
download | Nim-87f548c5f4027a0faf57acf0878f7c5db382222c.tar.gz |
make more tests green
Diffstat (limited to 'tests/manyloc/nake')
-rw-r--r-- | tests/manyloc/nake/nakefile.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/manyloc/nake/nakefile.nim b/tests/manyloc/nake/nakefile.nim index 97af79a84..3e8609169 100644 --- a/tests/manyloc/nake/nakefile.nim +++ b/tests/manyloc/nake/nakefile.nim @@ -88,7 +88,7 @@ task "download", "download game assets": if existsFile(path): echo "The file already exists\n", "[R]emove [M]ove [Q]uit [S]kip Source: ", GameAssets - case stdin.readLine.toLower + case stdin.readLine.toLowerAscii of "r": removeFile path of "m": @@ -120,7 +120,7 @@ task "download", "download game assets": echo "Download binary libs? Only libs for linux are available currently, enjoy the irony.\n", "[Y]es [N]o Source: ", BinLibs - case stdin.readline.toLower + case stdin.readline.toLowerAscii of "y", "yes": discard ## o_O else: |