all repos — hastyscribe @ 00f98d37cd084c3ddd54372e5cae28294630cf7d

A professional markdown compiler.

Fixed error in case of no input.
h3rald h3rald@h3rald.com
Sat, 08 Sep 2018 11:54:16 +0200
commit

00f98d37cd084c3ddd54372e5cae28294630cf7d

parent

76600a1f46a98c8a53ddd69fc7003bf86f8f4798

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M hastyscribe.nimhastyscribe.nim

@@ -538,7 +538,9 @@ elif options.output == "":

quit(usage, 5) elif options.watermark == "": quit(usage, 6) - + + if input == "": + quit(usage, 0) for file in walkFiles(input): files.add(file)