README.md in match-0.6.3 vs README.md in match-0.6.4
- old
+ new
@@ -179,26 +179,26 @@
```
match appstore -a tools.fastlane.app
match appstore -a tools.fastlane.app.watchkitapp
```
-You can make this even easier using [fastlane](https://github.com/fastlane/fastlane/tree/master/fastlane) by creating a match lane like this:
+You can make this even easier using [fastlane](https://github.com/fastlane/fastlane/tree/master/fastlane) by creating a `certificates` lane like this:
```
-lane :match do
+lane :certificates do
match(app_identifier: "com.krausefx.app1", readonly: true)
match(app_identifier: "com.krausefx.app2", readonly: true)
match(app_identifier: "com.krausefx.app3", readonly: true)
end
```
-Then all your team has to do is `fastlane match` and keys, certs and profiles for all targets will be synced.
+Then all your team has to do is `fastlane certificates` and keys, certs and profiles for all targets will be synced.
#### Passphrase
When running `match` for the first time on a new machine, it will ask you for the passphrase for the Git repository. This is an additional layer of security: each of the files will be encrypted using `openssl`. Make sure to remember the password, as you'll need it when you run match on a different machine.
-To set the passphrase using an environment variable, use `MATCH_PASSWORD`.
+To set the passphrase to decrypt your profiles using an environment variable, use `MATCH_PASSWORD`.
#### New machine
To set up the certificates and provisioning profiles on a new machine, you just run the same command using: