Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/azure-cli/azure/cli/command_modules/iot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
def handler(ctx, **kwargs):
cmd = kwargs.get('command', None)
if cmd and cmd.startswith('iot'):
if not extension_exists('azure-cli-iot-ext'):
if not extension_exists('azure-iot'):
ran_before = ctx.config.getboolean('iot', 'first_run', fallback=False)
if not ran_before:
extension_text = """
Comprehensive IoT data-plane functionality is available in the Azure IoT CLI Extension.
Comprehensive IoT functionality is available in the Azure IoT CLI Extension.

To install the extension, run: "az extension add --name azure-cli-iot-ext"
To install the extension, run: "az extension add --name azure-iot"

For more info and install guide go to: https://github.com/Azure/azure-iot-cli-extension
"""
Expand Down