Skip to content

Commit 9451b2f

Browse files
committed
fixed command arg for --root-dir in standalone server
1 parent 20442b2 commit 9451b2f

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)