diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2018-11-27 20:14:32 -0600 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2018-11-27 20:14:32 -0600 |
| commit | d7ca43f49fb544d1d1299a445ad519874ec63f3a (patch) | |
| tree | 3267de3291eb5eebf73f8f039a81d5ff297f4a5a | |
| parent | b8b56f4ed2deeee17cf331a93ef4b51068cd1ee9 (diff) | |
| download | nimterop-d7ca43f49fb544d1d1299a445ad519874ec63f3a.tar.gz nimterop-d7ca43f49fb544d1d1299a445ad519874ec63f3a.zip | |
Fix toast on Linux
| -rw-r--r-- | toast.nim | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -120,7 +120,7 @@ proc parseCli() = for param in params: let flag = if param.len() <= 2: param else: param[0..<2] - if flag in ["-h", "--help", "-?", "/?", "/h"]: + if flag in ["-h", "-?"]: echo HELP quit() elif flag == "-a": @@ -139,4 +139,4 @@ proc parseCli() = else: process(param, mode, past, pretty, preprocess) -parseCli()
\ No newline at end of file +parseCli() |
