From 7a627917fa6211ccb8b515d6669f2b10cfea5f6c Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 1 Mar 2026 20:17:30 +0200 Subject: use relative path to bin/rcm in cli example README --- examples/cli/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/cli/README.md b/examples/cli/README.md index e88c6bc..5b84810 100644 --- a/examples/cli/README.md +++ b/examples/cli/README.md @@ -8,26 +8,26 @@ To make it available on your `PATH`: export PATH="$PATH:/path/to/rcm/bin" ``` -Or invoke it directly: +Or invoke it directly using the relative path from this directory: ```sh -/path/to/rcm/bin/rcm config.rb --dry +../../bin/rcm config.rb --dry ``` ## Usage ```sh # Dry run — show what would change, make no changes -rcm config.rb --dry +../../bin/rcm config.rb --dry # Verbose output -rcm config.rb --debug +../../bin/rcm config.rb --debug # Limit execution to specific hosts -rcm config.rb --hosts earth,mars +../../bin/rcm config.rb --hosts earth,mars # Apply configuration -rcm config.rb +../../bin/rcm config.rb ``` ## What it does -- cgit v1.2.3