Skip to content

Commit b8b79cf

Browse files
authored
Fixes path in the launch.json for RL training (#2021)
# Description Fix paths in `launch.json` to be adjusted to the new repo structure. Fixes #1976 ## Type of change - Bug fix (non-breaking change which fixes an issue) ## Checklist - [x] I have run the [`pre-commit` checks](https://pre-commit.com/) with `./isaaclab.sh --format` - [ ] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have updated the changelog and the corresponding version in the extension's `config/extension.toml` file - [x] I have added my name to the `CONTRIBUTORS.md` or my name already exists there
1 parent 0e4b38c commit b8b79cf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.vscode/tools/launch.template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
"type": "python",
2424
"request": "launch",
2525
"args" : ["--task", "Isaac-Reach-Franka-v0", "--headless"],
26-
"program": "${workspaceFolder}/source/standalone/workflows/rsl_rl/train.py",
26+
"program": "${workspaceFolder}/scripts/reinforcement_learning/rsl_rl/train.py",
2727
"console": "integratedTerminal"
2828
},
2929
{
3030
"name": "Python: Play Environment",
3131
"type": "python",
3232
"request": "launch",
3333
"args" : ["--task", "Isaac-Reach-Franka-v0", "--num_envs", "32"],
34-
"program": "${workspaceFolder}/source/standalone/workflows/rsl_rl/play.py",
34+
"program": "${workspaceFolder}/scripts/reinforcement_learning/rsl_rl/play.py",
3535
"console": "integratedTerminal"
3636
}
3737
]

0 commit comments

Comments
 (0)