Skip to content

Commit d0fe4cf

Browse files
committed
fix: create-actions -> upsert-actions leftovers
1 parent 048c3e6 commit d0fe4cf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/contentful--app-scripts/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ In the interactive mode, the CLI will ask for all required options.
322322
> **Example**
323323
>
324324
> ```shell
325-
> $ npx --no-install @contentful/app-scripts create-actions
325+
> $ npx --no-install @contentful/app-scripts upsert-actions
326326
> ```
327327
328328
#### Non-interactive mode:
@@ -332,7 +332,7 @@ When passing the `--ci` argument adding all variables as arguments is required.
332332
> **Example**
333333
>
334334
> ```shell
335-
> $ npx --no-install @contentful/app-scripts create-actions --ci \
335+
> $ npx --no-install @contentful/app-scripts upsert-actions --ci \
336336
> --manifest-file path/to/contentful-app-manifest.json \
337337
> --organization-id some-org-id \
338338
> --definition-id some-app-def-id \

packages/contentful--app-scripts/src/upsert-actions/get-cli-args.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export async function getCreateAppActionsArgs(
1616
const validateSpinner = ora('Validating your input').start();
1717

1818
try {
19-
validateArguments(requiredOptions, settings, 'create-actions');
19+
validateArguments(requiredOptions, settings, 'upsert-actions');
2020
const appInfo = await getAppInfo(settings);
2121
return {
2222
host: settings.host || 'api.contentful.com',

0 commit comments

Comments
 (0)