Skip to content

Commit

Permalink
Fix permission
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabrizian committed Apr 16, 2024
1 parent a5cc592 commit 52fa215
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"-DTRITON_ENABLE_GPU:STRING=ON",
"-DTRITON_ENABLE_ENSEMBLE:STRING=ON",
"-DTRITON_ENABLE_NVTX:STRING=ON",
"-DCMAKE_INSTALL_PREFIX:STRING=${workspaceFolder}/build/install",
"-DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE",
"-DCMAKE_BUILD_TYPE:STRING=Debug",
"-DCMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc",
Expand Down Expand Up @@ -57,13 +58,25 @@
"--"
]
},
{
"label": "Move",
"type": "shell",
"command": "sudo",
"args": [
"cp",
"-r",
"${workspaceFolder}/build/install/backends/python/*",
"/opt/tritonserver/backends/python"
]
},
{
"label": "Build Python",
"dependsOrder": "sequence",
"dependsOn": [
"Configure",
"Build",
"Install"
"Install",
"Move"
],
"group": {
"kind": "build",
Expand Down

0 comments on commit 52fa215

Please sign in to comment.