Skip to content

Commit bad9db0

Browse files
authored
Use absolute path when --app-path is used. (#229)
JSRemoteTest-DCO-1.0-Signed-off-by: Roland Takacs [email protected]
1 parent e305c1f commit bad9db0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

jstest/__main__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,9 @@ def adjust_options(options):
186186
if options.testsuite:
187187
options.testsuite = utils.abspath(options.testsuite)
188188

189+
if options.app_path:
190+
options.app_path = utils.abspath(options.app_path)
191+
189192
return options
190193

191194

0 commit comments

Comments
 (0)