From e336dfb10a8e6fbe17c12ee5c7228531cdddca18 Mon Sep 17 00:00:00 2001 From: Vladimir Diaz Date: Tue, 30 Jan 2018 12:20:21 -0500 Subject: [PATCH] Fix the specified tuf directories in QUICKSTART.md Signed-off-by: Vladimir Diaz --- docs/QUICKSTART.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/QUICKSTART.md b/docs/QUICKSTART.md index 03d66f59..7bbb0679 100644 --- a/docs/QUICKSTART.md +++ b/docs/QUICKSTART.md @@ -16,7 +16,7 @@ $ repo.py --add foo.tar.gz **Step (3)** - Serve the repo ```Bash -$ cd "repo/" +$ cd "tufrepo/" $ python -m SimpleHTTPServer 8001 or with Python 3... @@ -25,11 +25,11 @@ $ python3 -m http.server 8001 **Step (4)** - Retrieve a target file ```Bash -$ cd "client/" +$ cd "tufclient/" $ client.py --repo http://localhost:8001 foo.tar.gz ``` See [CLI.md](CLI.md) for more examples. A [tutorial](../tuf/README.md) is also -available, and designed for users that want more control over the creation +available, and intended for users that want more control over the creation process.