We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.
null
args
1 parent 22526e5 commit 42e528dCopy full SHA for 42e528d
package.json
@@ -824,7 +824,7 @@
824
"launch": {
825
"properties": {
826
"target": {
827
- "type": "string",
+ "type": ["string", "null"],
828
"description": "The .robot file or a folder containing .robot files to be launched.",
829
"default": "${file}"
830
},
robotcode/debugger/launcher/server.py
@@ -235,7 +235,7 @@ async def _launch(
235
if target:
236
run_args.append(target)
237
238
- if not paths and not target:
+ if target is not None and not paths and not target:
239
run_args.append(".")
240
241
env = {k: ("" if v is None else str(v)) for k, v in env.items()} if env else {}
0 commit comments