Sema4AI / vscode-extension

Sema4.ai extension for VS Code: AI Actions and Automation development for Python
https://sema4.ai/docs/platform/vs-code
Apache License 2.0
7 stars 1 forks source link

If command line arguments use & it must be escaped when using a terminal #18

Open kariharju opened 5 months ago

kariharju commented 5 months ago

Issue by fabioz Wednesday Jan 12, 2022 at 15:04 GMT Originally opened as https://github.com/robocorp/robotframework-lsp/issues/536


To reproduce, create a robot which uses & and try to debug it (note, in this case, the workaround would be using AND instead of &, but we should still support &).

tasks:

  Run t1 and t2:
    command:
      - python
      - -m
      - robot
      - --report
      - NONE
      - --outputdir
      - output
      - --logtitle
      - Task log
      - -i
      - t1&t2
      - tasks.robot

condaConfigFile: conda.yaml
artifactsDir: output
PATH:
  - .
PYTHONPATH:
  - .
ignoreFiles:
  - .gitignore