Skip to content

Commit dde281e

Browse files
Address review comments: update status message text
1 parent f57eda4 commit dde281e

4 files changed

Lines changed: 6 additions & 5 deletions

File tree

packages/cli/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1196,7 +1196,8 @@ DESCRIPTION
11961196
11971197
Enable automatic upgrades for Shopify CLI.
11981198
1199-
When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version after each command.
1199+
When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version once per day. Major version
1200+
upgrades are skipped and must be done manually.
12001201
12011202
To disable auto-upgrade, run `shopify config autoupgrade off`.
12021203
```

packages/cli/oclif.manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3411,8 +3411,8 @@
34113411
],
34123412
"args": {
34133413
},
3414-
"description": "Enable automatic upgrades for Shopify CLI.\n\n When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version after each command.\n\n To disable auto-upgrade, run `shopify config autoupgrade off`.\n",
3415-
"descriptionWithMarkdown": "Enable automatic upgrades for Shopify CLI.\n\n When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version after each command.\n\n To disable auto-upgrade, run `shopify config autoupgrade off`.\n",
3414+
"description": "Enable automatic upgrades for Shopify CLI.\n\n When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version once per day. Major version upgrades are skipped and must be done manually.\n\n To disable auto-upgrade, run `shopify config autoupgrade off`.\n",
3415+
"descriptionWithMarkdown": "Enable automatic upgrades for Shopify CLI.\n\n When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version once per day. Major version upgrades are skipped and must be done manually.\n\n To disable auto-upgrade, run `shopify config autoupgrade off`.\n",
34163416
"enableJsonFlag": false,
34173417
"flags": {
34183418
},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const autoUpgradeStatus = {
22
on: 'Auto-upgrade on. Shopify CLI will update automatically after each command.',
33
off: "Auto-upgrade off. You'll need to run `shopify upgrade` to update manually.",
4-
notConfigured: 'Auto-upgrade not configured. Run `shopify upgrade` to set your preference.',
4+
notConfigured: 'Auto-upgrade not configured. Run `shopify config autoupgrade on` to enable it.',
55
} as const

packages/cli/src/cli/commands/config/autoupgrade/on.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default class AutoupgradeOn extends Command {
88

99
static descriptionWithMarkdown = `Enable automatic upgrades for Shopify CLI.
1010
11-
When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version after each command.
11+
When auto-upgrade is enabled, Shopify CLI automatically updates to the latest version once per day. Major version upgrades are skipped and must be done manually.
1212
1313
To disable auto-upgrade, run \`shopify config autoupgrade off\`.
1414
`

0 commit comments

Comments
 (0)