mirror of https://github.com/dapr/docs.git
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 <sujit@hotmail.com>
This commit is contained in:
parent
414f720b43
commit
01cb66772c
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue