Skip to content

Commit

Permalink
fix(docs): remove references to remote option
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Aug 22, 2020
1 parent 432ef13 commit 1b9eccb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ Options:
--config, -c [string] [required]
--dryrun, -d [boolean] [default: true]
--project, -p [array]
--remote, -r [string] [required]
```

Docker provides a single output stream, regardless of logger configuration. When running `graph-labels`, turning
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ TODO: describe a workflow with `status` state and `next`/`release` flags
To generate a graph of your project labels and how they relate to each other:

```shell
> node --require esm ./out/index.js graph-labels --config ~/config.yml --remote github | dot -Tpng -o /tmp/labels.png
> node --require esm ./out/index.js graph-labels --config ~/config.yml | dot -Tpng -o /tmp/labels.png
```

To view the graph after you have generated it:
Expand Down
2 changes: 1 addition & 1 deletion run.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ run-help:
node --require esm ./out/index.js --help

run-graph:
node --require esm ./out/index.js graph-labels --config $(RUN_CONFIG) --remote github
node --require esm ./out/index.js graph-labels --config $(RUN_CONFIG)

run-version:
node --require esm ./out/index.js --version

0 comments on commit 1b9eccb

Please sign in to comment.