From a886eef2a64b3b9e2ac586cfee6a45bce3e3fb12 Mon Sep 17 00:00:00 2001 From: Pavel Strashkin Date: Wed, 18 May 2016 11:45:02 -0700 Subject: [PATCH] Documentation: use "cp" instead of "mv" to keep git state untouched --- Documentation/dev-guide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/dev-guide.md b/Documentation/dev-guide.md index e9dcdf9a..73bef095 100644 --- a/Documentation/dev-guide.md +++ b/Documentation/dev-guide.md @@ -9,9 +9,9 @@ In this mode you provide the binary with paths to files for connectors, users, a You can rename these to the equivalent without the *".sample"* suffix since the defaults point to those locations: ```console -mv static/fixtures/connectors.json.sample static/fixtures/connectors.json -mv static/fixtures/users.json.sample static/fixtures/users.json -mv static/fixtures/emailer.json.sample static/fixtures/emailer.json +cp static/fixtures/connectors.json.sample static/fixtures/connectors.json +cp static/fixtures/users.json.sample static/fixtures/users.json +cp static/fixtures/emailer.json.sample static/fixtures/emailer.json ``` Starting dex is then as simple as: