Skip to content

Commit 7cd1502

Browse files
authored
fix,test=document_fix (#61914)
1 parent 28d191d commit 7cd1502

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

paddle/scripts/paddle_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,9 +1181,9 @@ function generate_api_spec() {
11811181
pip install -r ${PADDLE_ROOT}/python/requirements.txt
11821182
fi
11831183
if [ -d "${PADDLE_ROOT}/build/python/dist/" ]; then
1184-
pip --no-cache-dir install ${PADDLE_ROOT}/build/python/dist/*whl
1184+
pip install ${PADDLE_ROOT}/build/python/dist/*whl
11851185
elif [ -d "${PADDLE_ROOT}/dist/" ];then
1186-
pip --no-cache-dir install ${PADDLE_ROOT}/dist/*whl
1186+
pip install ${PADDLE_ROOT}/dist/*whl
11871187
mkdir ${PADDLE_ROOT}/build/python/dist/ && mv ${PADDLE_ROOT}/dist/*whl ${PADDLE_ROOT}/build/python/dist/
11881188
fi
11891189
spec_path=${PADDLE_ROOT}/paddle/fluid/API_${spec_kind}.spec

0 commit comments

Comments
 (0)