Skip to content

Commit

Permalink
docs: Update --bootstrap help text on algokit init
Browse files Browse the repository at this point in the history
  • Loading branch information
robdmoore authored and daniel-makerx committed Mar 29, 2023
1 parent 637d534 commit ce9ebea
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ Automatically choose default answers without asking when creating this template.


### --bootstrap, --no-bootstrap
Whether to run algokit bootstrap to bootstrap the new project’s dependencies.
Whether to run algokit bootstrap to install and configure the new project’s dependencies locally.


### --ide, --no-ide
Expand Down
2 changes: 1 addition & 1 deletion src/algokit/cli/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def validate_dir_name(context: click.Context, param: click.Parameter, value: str
"--bootstrap/--no-bootstrap",
is_flag=True,
default=None,
help="Whether to run `algokit bootstrap` to bootstrap the new project's dependencies.",
help="Whether to run `algokit bootstrap` to install and configure the new project's dependencies locally.",
)
@click.option(
"open_ide",
Expand Down
5 changes: 3 additions & 2 deletions tests/init/test_init.test_init_help.approved.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ Options:
creation.
--defaults Automatically choose default answers without
asking when creating this template.
--bootstrap / --no-bootstrap Whether to run `algokit bootstrap` to
bootstrap the new project's dependencies.
--bootstrap / --no-bootstrap Whether to run `algokit bootstrap` to install
and configure the new project's dependencies
locally.
--ide / --no-ide Whether to open an IDE for you if the IDE and
IDE config are detected. Supported IDEs: VS
Code.
Expand Down

0 comments on commit ce9ebea

Please sign in to comment.