Skip to content

Commit

Permalink
fix tasks.json (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
nclaeys authored Mar 4, 2024
1 parent 9b378d1 commit 3448242
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 12 deletions.
17 changes: 11 additions & 6 deletions project/pyspark/{{ cookiecutter.project_name }}/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"label": "Install python dependencies in ide",
"type": "shell",
"command": "pip install -r requirements.txt && pip install -e .",
"runOptions": {
"runOn": "folderOpen"
}
"version": "2.0.0",
"tasks": [
{
"label": "Install python dependencies in ide",
"type": "shell",
"command": "pip install -r requirements.txt && pip install -e .",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}
17 changes: 11 additions & 6 deletions project/python/{{ cookiecutter.project_name }}/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"label": "Install python dependencies in ide",
"type": "shell",
"command": "pip install -r requirements.txt && pip install -e .",
"runOptions": {
"runOn": "folderOpen"
}
"version": "2.0.0",
"tasks": [
{
"label": "Install python dependencies in ide",
"type": "shell",
"command": "pip install -r requirements.txt && pip install -e .",
"runOptions": {
"runOn": "folderOpen"
}
}
]
}

0 comments on commit 3448242

Please sign in to comment.