Skip to content

Commit

Permalink
Merge pull request #101 from simonjgould/fix-root-dir-wiremock-standa…
Browse files Browse the repository at this point in the history
…lone

Fix `--root-dir` propagation to the standalone server
  • Loading branch information
oleg-nenashev committed Dec 12, 2023
2 parents c304c06 + 9451b2f commit 461dcf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wiremock/server/server.py
Expand Up @@ -61,7 +61,7 @@ def start(self):
"--local-response-templating",
]
if self.root_dir is not None:
cmd.append("--root-dir=")
cmd.append("--root-dir")
cmd.append(str(self.root_dir))
try:
self.__subprocess = Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=STDOUT)
Expand Down

0 comments on commit 461dcf3

Please sign in to comment.