Skip to content
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

Update generating-a-provider.md to fix broken references #291

Closed
wants to merge 1 commit into from
Closed
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/generating-a-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ as the example, but the process is similar for any other Terraform provider.
## Prepare your new provider repository

1. Create a new GitHub repository for the Crossplane provider by clicking the
"**Use this template**" button in the [upjet-provider-template] repository. The
"**Use this template**" button in the [provider-template] repository. The
expected repository name is in the format `provider-<name>`. For example,
`provider-github`. The script in step 3 expects this format and fails if you
follow a different naming convention.
Expand All @@ -25,11 +25,11 @@ command:
make submodules
```

1. To setup your provider name and group run the `./hack/prepare.sh`
1. To setup your provider name and group run the `./hack/helpers/prepare.sh`
script from the repository root to prepare the code.

```bash
./hack/prepare.sh
PROVIER=github ./hack/helpers/prepare.sh
```

1. Ensure your organization name is correct in the `Makefile` for the
Expand Down