Skip to content

Commit 660e36c

Browse files
Single quote should become double quotes
1 parent 8c02360 commit 660e36c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conda-recipe/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ pushd dist
3030
${PYTHON} -m wheel unpack -d dpctl_wheel dpctl*.whl
3131
export lib_name=libDPCTLSyclInterface
3232
echo ${lib_name}
33-
export so_full_path=$(find dpctl_wheel -regextype posix-extended -regex '^.*${lib_name}\.so')
33+
export so_full_path=$(find dpctl_wheel -regextype posix-extended -regex "^.*${lib_name}\.so")
3434
echo "So full path: ${so_full_path}"
35-
export sox_full_path=$(find dpctl_wheel -regextype posix-extended -regex '^.*${lib_name}\.so\.[0-9]*$')
35+
export sox_full_path=$(find dpctl_wheel -regextype posix-extended -regex "^.*${lib_name}\.so\.[0-9]*$")
3636
echo "Sox full path: ${sox_full_path}"
37-
export soxxx_full_path=$(find dpctl_wheel -regextype posix-extended -regex '^.*${lib_name}\.so\.[0-9]*\.[0-9]*$')
37+
export soxxx_full_path=$(find dpctl_wheel -regextype posix-extended -regex "^.*${lib_name}\.so\.[0-9]*\.[0-9]*$")
3838
echo "Soxxx full path: ${soxxx_full_path}"
3939
rm -rf ${so_name} ${soxxx_name}
4040
echo "Removed two files"

0 commit comments

Comments
 (0)