diff options
author | Michal Kuratczyk <mkuratczyk@pivotal.io> | 2020-11-16 13:51:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 13:51:57 +0100 |
commit | 391b2431c15c9a7239a24b01a61a56c9d792b7c0 (patch) | |
tree | 5b0ab1cfa689ba6b5a2a568f59c1035d85a7fe2c | |
parent | ed112773e337104df0097dd36ff00c8c2bb7ea70 (diff) | |
download | rabbitmq-server-git-how-to-run-cli.tar.gz |
Explain how to run locally modified CLIshow-to-run-cli
-rw-r--r-- | deps/rabbitmq_cli/CONTRIBUTING.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/deps/rabbitmq_cli/CONTRIBUTING.md b/deps/rabbitmq_cli/CONTRIBUTING.md index 672b29d305..4b94cc8c11 100644 --- a/deps/rabbitmq_cli/CONTRIBUTING.md +++ b/deps/rabbitmq_cli/CONTRIBUTING.md @@ -120,6 +120,15 @@ functions in Mix to start a new distributed node and connect it to the RabbitMQ server. It complains because we don't actually use the context dictionary, but it's fine otherwise. +### Running Modified CLIs + +To execute the modified CLIs (to test against an actual broker), follow these steps: + +``` +make -C ../.. dist # make dist in the main rabbitmq-server repository folder +../../sbin/rabbitmqctl # run CLIs from the main repository's sbin folder +``` + ## Code of Conduct See [CODE_OF_CONDUCT.md](./CODE_OF_CONDUCT.md). |