aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hydrilla/builder/__main__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hydrilla/builder/__main__.py b/src/hydrilla/builder/__main__.py
index 32ac2d9..4b703b8 100644
--- a/src/hydrilla/builder/__main__.py
+++ b/src/hydrilla/builder/__main__.py
@@ -34,7 +34,7 @@ dir_type = click.Path(exists=True, file_okay=False, resolve_path=True)
index_type = click.Path(path_type=Path)
@click.command()
-@click.option('-s', '--srcdir', default='.', type=dir_type,
+@click.option('-s', '--srcdir', default='./', type=dir_type, show_default=True,
help='Source directory to build from.')
@click.option('-i', '--index-json', default='index.json', type=index_type,
help='Path to file to be processed instead of index.json (if not absolute, resolved relative to srcdir).')