From: Jeremy Stanley Date: Sat, 29 Jul 2017 18:34:55 +0000 (+0000) Subject: Explicitly configure the root_path in examples X-Git-Tag: 0.0.1~145 X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=commitdiff_plain;h=8a42d3ff1abf80c395de488c5271261fabf33de4 Explicitly configure the root_path in examples In the example and test configurations, set the root_path value to "." signifying the current/starting directory. This exercises the option so we can make sure it doesn't break anything. --- diff --git a/etc/mudpy.yaml b/etc/mudpy.yaml index dc82a45..a531af3 100644 --- a/etc/mudpy.yaml +++ b/etc/mudpy.yaml @@ -60,5 +60,5 @@ __control__: internal:storage: default_dir: "data" - #root_path: "." + root_path: "." search_path: [ "", "etc", "share", "data" ] diff --git a/mudpy/tests/fixtures/test_daemon.yaml b/mudpy/tests/fixtures/test_daemon.yaml index f9d7c64..cc1190e 100644 --- a/mudpy/tests/fixtures/test_daemon.yaml +++ b/mudpy/tests/fixtures/test_daemon.yaml @@ -60,5 +60,5 @@ __control__: internal:storage: default_dir: "data" - #root_path: "." + root_path: "." search_path: [ "", "etc", "share", "data" ]