Skip to content

Commit 461dcf3

Browse files
Merge pull request #101 from simonjgould/fix-root-dir-wiremock-standalone
Fix `--root-dir` propagation to the standalone server
2 parents c304c06 + 9451b2f commit 461dcf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wiremock/server/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def start(self):
6161
"--local-response-templating",
6262
]
6363
if self.root_dir is not None:
64-
cmd.append("--root-dir=")
64+
cmd.append("--root-dir")
6565
cmd.append(str(self.root_dir))
6666
try:
6767
self.__subprocess = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT)

0 commit comments

Comments
 (0)