File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -101,18 +101,18 @@ function make_path_absolute {
101101function search_wheel {
102102 # Args: [wheel base name] [index]
103103
104- BASENAME =$1
104+ WHEEL_BASENAME =$1
105105 INDEX=$2
106106
107- SEARCH_PATTERN=" ${BASENAME } -[^\" ]*${PY_TAG} [^\" ]*${PLATFORM} [^\" ]*\.whl"
107+ SEARCH_PATTERN=" ${WHEEL_BASENAME } -[^\" ]*${PY_TAG} [^\" ]*${PLATFORM} [^\" ]*\.whl"
108108 echo " Searching for wheel ${SEARCH_PATTERN} "
109109 export WHEEL_FILE=$( curl -sSfL " ${S3_BASE} /index-${INDEX} .html" \
110110 | grep -o " $SEARCH_PATTERN " \
111111 | head -n 1)
112112 if [ ! -z " ${WHEEL_FILE} " ]; then
113113 curl -sSfL " ${S3_BASE} /${WHEEL_FILE} " -o " ${WHEEL_FILE} "
114114 echo " Using S3 wheel: ${WHEEL_FILE} "
115- replace_ddtrace_dep " ${WHEEL_BASE_NAME } = { file = \" ${WHEEL_FILE} \" }"
115+ replace_ddtrace_dep " ${WHEEL_BASENAME } = { file = \" ${WHEEL_FILE} \" }"
116116 fi
117117}
118118
You can’t perform that action at this time.
0 commit comments