From 01cb66772c446a4f59260b800d0b0a6236432dd9 Mon Sep 17 00:00:00 2001 From: Sujit D'Mello Date: Tue, 31 Jan 2023 11:55:50 -0500 Subject: [PATCH] Commands to change directory have incorrect path (#3105) The instructions contain various instances where the user is expected to change directory from the root of the Quickstart folder, but the **cd** command listed has an incorrect path specified so it does not work as intended. Most will figure out the typo off course but just this will make the experience a bit better for those new to Dapr. Here's an example of one instance: Old command: ```bash cd ../service_invocation/go/http/checkout ``` New command: ```bash cd service_invocation/go/http/checkout ``` Signed-off-by: Sujit D'Mello --- .../resiliency-serviceinvo-quickstart.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-serviceinvo-quickstart.md b/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-serviceinvo-quickstart.md index f338bde8a..66808210e 100644 --- a/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-serviceinvo-quickstart.md +++ b/daprdocs/content/en/getting-started/quickstarts/resiliency/resiliency-serviceinvo-quickstart.md @@ -47,7 +47,7 @@ git clone https://github.com/dapr/quickstarts.git In a terminal window, from the root of the Quickstart directory, navigate to `order-processor` directory. ```bash -cd ../service_invocation/python/http/order-processor +cd service_invocation/python/http/order-processor ``` Install dependencies: @@ -67,7 +67,7 @@ dapr run --app-port 8001 --app-id order-processor --config ../config.yaml --com In a new terminal window, from the root of the Quickstart directory, navigate to the `checkout` directory. ```bash -cd ../service_invocation/python/http/checkout +cd service_invocation/python/http/checkout ``` Install dependencies: @@ -275,7 +275,7 @@ In a terminal window, from the root of the Quickstart directory, navigate to `order-processor` directory. ```bash -cd ../service_invocation/javascript/http/order-processor +cd service_invocation/javascript/http/order-processor ``` Install dependencies: @@ -505,7 +505,7 @@ navigate to `order-processor` directory. ```bash -cd ../service_invocation/csharp/http/order-processor +cd service_invocation/csharp/http/order-processor ``` Install dependencies: @@ -527,7 +527,7 @@ In a new terminal window, from the root of the Quickstart directory, navigate to the `checkout` directory. ```bash -cd ../service_invocation/csharp/http/checkout +cd service_invocation/csharp/http/checkout ``` Install dependencies: @@ -739,7 +739,7 @@ In a terminal window, from the root of the Quickstart directory, navigate to `order-processor` directory. ```bash -cd ../service_invocation/java/http/order-processor +cd service_invocation/java/http/order-processor ``` Install dependencies: @@ -760,7 +760,7 @@ In a new terminal window, from the root of the Quickstart directory, navigate to the `checkout` directory. ```bash -cd ../service_invocation/java/http/checkout +cd service_invocation/java/http/checkout ``` Install dependencies: @@ -968,7 +968,7 @@ In a terminal window, from the root of the Quickstart directory, navigate to `order-processor` directory. ```bash -cd ../service_invocation/go/http/order-processor +cd service_invocation/go/http/order-processor ``` Install dependencies: @@ -989,7 +989,7 @@ In a new terminal window, from the root of the Quickstart directory, navigate to the `checkout` directory. ```bash -cd ../service_invocation/go/http/checkout +cd service_invocation/go/http/checkout ``` Install dependencies: