From 973b8e7d1d62c6b1786aa98e04d1ed1fbc6499fb Mon Sep 17 00:00:00 2001 From: Sergi Delgado Segura Date: Tue, 24 Mar 2020 09:34:23 +0100 Subject: [PATCH] close #111 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b5a683..0947250 100644 --- a/README.md +++ b/README.md @@ -106,18 +106,18 @@ The script generates and stores a set of keys on disk (by default it outputs the The following command will generate a set of keys for `teos` and store it in the default data directory (`~/.teos`): ``` -python generate_keys.py -d ~./teos +python generate_keys.py -d ~/.teos ``` The following command will generate a set of keys for `teos_cli` and store it in the default data directory (`~/.teos_cli`): ``` -python generate_keys.py -n cli -d ~./teos_cli +python generate_keys.py -n cli -d ~/.teos_cli ``` Notice that `cli` needs a copy of the tower public key, so you should make a copy of that if you're using different data directories (as in this example): ``` -cp ~./teos/teos_pk.der ~./teos_cli/teos_pk.der +cp ~/.teos/teos_pk.der ~/.teos_cli/teos_pk.der ``` ## Contributing