fix default input dir for app command

master
subnixr 2018-07-21 00:16:24 +02:00
parent b91d123334
commit 5302b7dc78
2 changed files with 8 additions and 4 deletions

View File

@ -4,7 +4,7 @@ from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='Ciclostile',
name='ciclostile',
version='0.0.0.dev0',
description='Static site generator',

View File

@ -1,4 +1,5 @@
#!/usr/bin/env python3
import os
import sys
import click
import ciclostile
@ -34,9 +35,12 @@ def index(template, output, folder):
@cli.command()
@click.option("-p", "--port", type=int, default=12345)
@click.argument("post_dir", default=".")
def app(port, post_dir):
webapp.run(port=port)
@click.argument("input_dir", default=os.getcwd(), type=click.Path(exists=True,
file_okay=False))
def app(port, input_dir):
print({'port': port,
'input': input_dir})
# webapp.run(port=port)
if __name__ == "__main__":