Skip to content

Commit 5a7d273

Browse files
Fixed popd .. -> popd
1 parent 902882a commit 5a7d273

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

conda-recipe/build.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ls -l
5353
rm -rf dpctl_wheel
5454
echo "Deleted"
5555
ls -l
56-
popd ..
56+
popd
5757
echo "start retagging"
5858
${PYTHON} -m wheel tags --remove --build "$GIT_DESCRIBE_NUMBER" \
5959
--platform-tag "manylinux_${GLIBC_MAJOR}_${GLIBC_MINOR}_x86_64" \
@@ -68,7 +68,8 @@ ${PYTHON} -m pip install dist/dpctl*.whl \
6868
-vv
6969

7070
echo "Installed"
71-
export libdir=$(find $PREFIX | grep libDPCTLSyclInterface | dirname)
71+
find $PREFIX -name 'libDPCTLSyclInterface*'
72+
export libdir=$(find $PREFIX -name 'libDPCTLSyclInterface*' -exec dirname \{\} \;)
7273
echo "libdir = ${libdir}"
7374

7475
ls ${libdir}

0 commit comments

Comments
 (0)