Remove the trailing 'm' , since the tag for py38 is not cp38m but cp38.

PiperOrigin-RevId: 301682546
Change-Id: I86e3632702ee77f82e3a59ba489a298930588ab9
This commit is contained in:
A. Unique TensorFlower 2020-03-18 15:31:22 -07:00 committed by TensorFlower Gardener
parent d9d7b0cb78
commit c7fbc76d4a

View File

@ -19,6 +19,6 @@ set -x
source tensorflow/tools/ci_build/release/common.sh
# Copy and rename to tensorflow
for f in $(ls py_test_dir/tensorflow-*cp3*-cp3*m-win_amd64.whl); do
for f in $(ls py_test_dir/tensorflow-*cp3*-cp3*-win_amd64.whl); do
copy_to_new_project_name "${f}" tensorflow_gpu
done