File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 6464
6565# Install mssql-cli wheel.
6666dist_dir=$source_dir /dist
67- all_modules=` find $dist_dir -name " *.whl" `
67+
68+ # Ignore the dev latest wheel since build outputs two.
69+ all_modules=` find $dist_dir -not -name " mssql_cli-dev-latest-py2.py3-none-manylinux1_x86_64.whl" `
6870$source_dir /python_env/bin/pip3 install $all_modules
6971
7072# Add the debian files.
Original file line number Diff line number Diff line change @@ -69,7 +69,9 @@ export CUSTOM_PIP=%{python_dir}/bin/pip3
6969%install
7070# Install mssql-cli
7171dist_dir=%{repo_path }/dist
72- all_modules=` find $dist_dir -name " mssql_cli-%{version}-py2.py3-none-manylinux1_x86_64.whl" `
72+
73+ # Ignore the dev latest wheel since build outputs two.
74+ all_modules= `find $dist_dir -not -name "mssql_cli-dev-latest-py2.py3-none-manylinux1_x86_64.whl"`
7375%{python_dir }/bin/pip3 install $all_modules
7476
7577# Create executable
You can’t perform that action at this time.
0 commit comments