From 16a7d606c0fce83654829a0595a11877663f8fc8 Mon Sep 17 00:00:00 2001 From: asyncapi-bot Date: Tue, 12 Sep 2023 08:01:38 +0000 Subject: [PATCH] docs(cli): update latest cli docs --- pages/docs/tools/cli/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/tools/cli/installation.md b/pages/docs/tools/cli/installation.md index c3bdf6aba64e..04d94400f2e5 100644 --- a/pages/docs/tools/cli/installation.md +++ b/pages/docs/tools/cli/installation.md @@ -43,7 +43,7 @@ asyncapi/cli [COMMAND HERE] # Example that you can run inside the cli directory after cloning this repository. First, you specify the mount in the location of your AsyncAPI specification file and then you mount it in the directory where the generation result should be saved. docker run --rm -it \ --user=root \ - -v ${PWD}/test/fixtures/asyncapi_v1.yml:/app/asyncapi.yml \ + -v ${PWD}/test/integration/fixtures/asyncapi_v1.yml:/app/asyncapi.yml \ -v ${PWD}/output:/app/output \ asyncapi/cli generate fromTemplate -o /app/output /app/asyncapi.yml @asyncapi/html-template --force-write ```