Skip to content

Commit 9a1262a

Browse files
committed
load-all
load-all
1 parent a98e00c commit 9a1262a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/ci/test_extensions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ for ext in $output; do
2727
exit_code=1
2828
echo "Failed to load:" $ext
2929
fi
30-
azdev verify load_all
30+
azdev verify load-all
3131
if [ $? != 0 ]
3232
then
3333
exit_code=1

tools/automation/verify/verify_load_all.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
EXTENSION_FAILURE_EXCLUSIONS = []
1111

1212
def init(root):
13-
parser = root.add_parser('load_all', help='Load the full command table, command arguments and help.')
13+
parser = root.add_parser('load-all', help='Load the full command table, command arguments and help.')
1414
parser.set_defaults(func=verify_load_all)
1515

1616

@@ -19,7 +19,7 @@ def verify_load_all(_):
1919
from azure.cli.core.file_util import get_all_help, create_invoker_and_load_cmds_and_args
2020

2121
print('Loading all commands, arguments, and help...')
22-
# setup CLI to enable command loader
22+
# setup CLI to enable command loader and register event
2323
az_cli = get_default_cli()
2424
az_cli.register_event(EVENT_FAILED_EXTENSION_LOAD, extension_failed_load_handler)
2525

0 commit comments

Comments
 (0)