From 1d193669ebe311f22e31bafa6f1cc2afbafb55dd Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 15 Sep 2019 22:48:55 -0400 Subject: [PATCH] fixes --- bake/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bake/cli.py b/bake/cli.py index bd90ec6..e29cf67 100644 --- a/bake/cli.py +++ b/bake/cli.py @@ -43,8 +43,8 @@ def echo_json(obj): default="__BAKEFILE__", envvar="BAKEFILE_PATH", nargs=1, - # TODO: click.Path()? - type=click.STRING, + type=click.Path(), + help="The Bakefile to use.", ) @click.option( "--list", @@ -92,7 +92,7 @@ def echo_json(obj): "-e", nargs=1, type=click.STRING, - help="environment variables, in JSON format.", + help="Environment variables, in JSON format.", ) @click.option( "--json",