Skip to content

Commit 8b51053

Browse files
Update conda-package.yml
Use double quotes in Add library step to ensure it is expanded
1 parent 8ee1d41 commit 8b51053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/conda-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
# Variable assisting OpenCL CPU driver to find TBB DLLs which are not located where it expects them by default
291291
$cl_cfg="$conda_env_library\lib\cl.cfg"
292292
Write-Output $cl_cfg
293-
(Get-Content $cl_cfg) -replace '^CL_CONFIG_TBB_DLL_PATH =', 'CL_CONFIG_TBB_DLL_PATH = $conda_env_library\bin' | Set-Content $cl_cfg
293+
(Get-Content $cl_cfg) -replace '^CL_CONFIG_TBB_DLL_PATH =', "CL_CONFIG_TBB_DLL_PATH = $conda_env_library\bin" | Set-Content $cl_cfg
294294
Get-Content -Tail 5 -Path $cl_cfg
295295
}
296296
- name: Smoke test

0 commit comments

Comments
 (0)