File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -75,17 +75,18 @@ def download_official_wheels():
7575 utility .clean_up (utility .MSSQLCLI_DIST_DIRECTORY )
7676 os .mkdir (utility .MSSQLCLI_DIST_DIRECTORY )
7777
78- print ('Downloading official wheels with version: {}' .format (latest_version ))
78+ print ('Downloading official wheels and sdist with version: {}' .format (latest_version ))
7979 blob_names = [
8080 'mssql_cli-{}-py2.py3-none-macosx_10_11_intel.whl' .format (latest_version ),
8181 'mssql_cli-{}-py2.py3-none-manylinux1_x86_64.whl' .format (latest_version ),
8282 'mssql_cli-{}-py2.py3-none-win_amd64.whl' .format (latest_version ),
83- 'mssql_cli-{}-py2.py3-none-win32.whl' .format (latest_version )
83+ 'mssql_cli-{}-py2.py3-none-win32.whl' .format (latest_version ),
84+ 'mssql_cli-{}.tar.gz' .format (latest_version )
8485 ]
8586
8687 blob_service = BlockBlobService (connection_string = AZURE_STORAGE_CONNECTION_STRING )
8788 for blob in blob_names :
88- print ('Downloading wheel :{}' .format (blob ))
89+ print ('Downloading file :{}' .format (blob ))
8990
9091 if not blob_service .exists (BLOB_MSSQL_CLI_DAILY_CONTAINER_NAME , blob ):
9192 print ('Error: blob: {} does not exist in container: {}' \
You can’t perform that action at this time.
0 commit comments