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 bootstrap argument examples to use spaces #193

Merged
merged 1 commit into from
Aug 21, 2024
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,23 @@ If the new track is authorized, then create a [new-issue][] in this repository,
- If the requestor is volunteering, that's fine.
- If the requestor is volunteering someone else for the job, confirm with that person.

1. Run `LANGUAGE=<language> SLUG=<slug> USERNAMES=<comma,separated,list> bin/bootstrap` (e.g. `LANGUAGE=Rust SLUG=rust USERNAMES=foo,bar bin/bootstrap`)
1. Run `LANGUAGE=<language> SLUG=<slug> USERNAMES=<comma,separated,list> bin/bootstrap` (e.g. `LANGUAGE="Common Lisp" SLUG="common-lisp" USERNAMES="foo,bar" bin/bootstrap`)
1. Let the requestor(s)/maintainer(s) know that the repo is ready for them, and point them to the launch checklist issue.

#### Bootstrap Test Runner (optional)

1. Open a prompt in the root of the cloned [`generic-test-runner`][generic-test-runner] repo
1. Run `LANGUAGE=<language> SLUG=<slug> bin/bootstrap.sh` (e.g. `LANGUAGE=Rust SLUG=rust bin/bootstrap.sh`)
1. Run `LANGUAGE=<language> SLUG=<slug> bin/bootstrap.sh` (e.g. `LANGUAGE="Common Lisp" SLUG="common-lisp" bin/bootstrap.sh`)

#### Bootstrap Representer (optional)

1. Open a prompt in the root of the cloned [`generic-representer`][generic-representer] repo
1. Run `LANGUAGE=<language> SLUG=<slug> bin/bootstrap.sh` (e.g. `LANGUAGE=Rust SLUG=rust bin/bootstrap.sh`)
1. Run `LANGUAGE=<language> SLUG=<slug> bin/bootstrap.sh` (e.g. `LANGUAGE="Common Lisp" SLUG="common-lisp" bin/bootstrap.sh`)

#### Bootstrap Analyzer (optional)

1. Open a prompt in the root of the cloned [`generic-analyzer`][generic-analyzer] repo
1. Run `LANGUAGE=<language> SLUG=<slug> bin/bootstrap.sh` (e.g. `LANGUAGE=Rust SLUG=rust bin/bootstrap.sh`)
1. Run `LANGUAGE=<language> SLUG=<slug> bin/bootstrap.sh` (e.g. `LANGUAGE="Common Lisp" SLUG="common-lisp" bin/bootstrap.sh`)

[generic-track]: https://github.com/exercism/generic-track
[github-cli]: https://cli.github.com/
Expand Down