summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNickNorth <North.N@gmail.com>2016-01-23 18:18:48 +0000
committerNickNorth <North.N@gmail.com>2016-01-23 18:18:48 +0000
commit3619c80c3e45994304fc88f1c281bd9f50e7366d (patch)
tree2709bc86677ae86191a545e54afc21f6f986ce52
parenta18004d43cdc6924ce6e43a59d058e4cba5b91a1 (diff)
downloadcouchdb-3619c80c3e45994304fc88f1c281bd9f50e7366d.tar.gz
Fix a broken path in Windows
-rwxr-xr-xdev/run1
1 files changed, 1 insertions, 0 deletions
diff --git a/dev/run b/dev/run
index 147bead8c..d2705f7d7 100755
--- a/dev/run
+++ b/dev/run
@@ -178,6 +178,7 @@ def setup_configs(ctx):
# Erlang always wants UNIX-style paths
env["data_dir"] = env["data_dir"].replace("\\", "/")
env["view_index_dir"] = env["view_index_dir"].replace("\\", "/")
+ env["prefix"] = env["prefix"].replace("\\", "/")
write_config(ctx, node, env)