We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca546cc commit 31b53f5Copy full SHA for 31b53f5
1 file changed
conda-recipe/meta.yaml
@@ -16,8 +16,8 @@ requirements:
16
test:
17
commands:
18
- export ICD_FN=${CONDA_PREFIX}/etc/OpenCL/vendors/intel-ocl-gpu.icd
19
- - test -h ${ICD_FN}
20
- - test -e "$(readlink ${ICD_FN})"
+ - if [ -d /etc/OpenCL/vendors ]; then test -h "${ICD_FN}"; fi
+ - if [ -L "${ICD_FN}" ]; then test -e "$(readlink "${ICD_FN}")"; fi
21
22
about:
23
home: https://github.com/IntelPython/{{ name|lower }}-feedstock
0 commit comments