File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
sdks/java/container/license_scripts Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,12 @@ echo "Copying already-fetched licenses from ${EXISTING_LICENSE_DIR} to ${DOWNLOA
3939if [ -d " $DOWNLOAD_DIR " ]; then rm -rf " $DOWNLOAD_DIR " ; fi
4040mkdir -p " $DOWNLOAD_DIR "
4141cp -r " ${EXISTING_LICENSE_DIR} " /* .jar " ${DOWNLOAD_DIR} "
42-
43- $PYTHON -m venv --clear ${ENV_DIR} && . ${ENV_DIR} /bin/activate
44- pip install --retries 10 --upgrade pip setuptools wheel
42+ python -m venv --clear ${ENV_DIR} --without-pip --system-site-packages
43+ . ${ENV_DIR} /bin/activate
44+ python -m pip install --retries 10 --upgrade pip setuptools wheel
4545
4646# install packages
47- pip install --retries 10 -r ${SCRIPT_DIR} /requirement.txt
47+ python -m pip install --retries 10 -r ${SCRIPT_DIR} /requirement.txt
4848
4949# pull licenses, notices and source code
5050FLAGS=" --license_index=${INDEX_FILE} \
You can’t perform that action at this time.
0 commit comments