Skip to content

Commit bc78431

Browse files
Merge pull request #1093 from IntelPython/minor-tweaks-to-post-link-pre-unlink
Removed trailing slash in directory path
2 parents 6c629a8 + 829fb5d commit bc78431

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

conda-recipe/dpctl-post-link.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/bash
22

33
systemwide_icd=/etc/OpenCL/vendors/intel.icd
4-
local_vendors=$PREFIX/etc/OpenCL/vendors/
4+
local_vendors=$PREFIX/etc/OpenCL/vendors
55
icd_fn=$local_vendors/intel-ocl-gpu.icd
66

77
if [[ -f $systemwide_icd && -d $local_vendors && ! -f $icd_fn ]]; then

conda-recipe/dpctl-pre-unlink.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/bash
22

3-
local_vendors=$PREFIX/etc/OpenCL/vendors/
3+
local_vendors=$PREFIX/etc/OpenCL/vendors
44
icd_fn=$local_vendors/intel-ocl-gpu.icd
55

66
if [[ -L $icd_fn ]]; then

0 commit comments

Comments
 (0)