Skip to content

MQE-2289: Cant generate urn catalog #799

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 21, 2020
Merged
Show file tree
Hide file tree
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 docs/commands/mftf.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@ It also enables auto-completion in PhpStorm.
#### Usage

```bash
vendor/bin/mftf generate:urn-catalog [--force] [<path to the directory with misc.xml>]
vendor/bin/mftf generate:urn-catalog [--force] [<path to misc.xml>]
```

`misc.xml` is typically located in `<project root>/.idea/`.
`misc.xml` is typically located at `<project root>/.idea/misc.xml`.

#### Options

Expand All @@ -259,7 +259,7 @@ vendor/bin/mftf generate:urn-catalog [--force] [<path to the directory with misc
#### Example

```bash
vendor/bin/mftf generate:urn-catalog .idea/
vendor/bin/mftf generate:urn-catalog .idea/misc.xml
```

### `reset`
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ vendor/bin/mftf build:project
If you use PhpStorm, generate a URN catalog:

```bash
vendor/bin/mftf generate:urn-catalog .idea/
vendor/bin/mftf generate:urn-catalog .idea/misc.xml
```

If the file does not exist, add the `--force` option to create it:

```bash
vendor/bin/mftf generate:urn-catalog --force .idea/
vendor/bin/mftf generate:urn-catalog --force .idea/misc.xml
```

See [`generate:urn-catalog`][] for more details.
Expand Down
2 changes: 1 addition & 1 deletion docs/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Takes place when **first** digit of version number changes.

## After updating

1. It is a good idea to regenerate your IDE Schema Definition catalog with `vendor/bin/mftf generate:urn-catalog .idea/`
1. It is a good idea to regenerate your IDE Schema Definition catalog with `vendor/bin/mftf generate:urn-catalog .idea/misc.xml`
1. Update your tests, including data, metadata and other resources. Check if they contain tags that are unsupported in the newer version.
1. Remove the references to resources (ActionGroups, Sections, Tests) marked as deprecated.

Expand Down