fix openssl dlls

This commit is contained in:
Jay Lee
2020-03-26 15:10:07 -04:00
parent e15a93ebcb
commit da90239e2b
3 changed files with 7 additions and 4 deletions

View File

@@ -702,7 +702,6 @@ def printExports():
matterState = matter['state']
matterId = matter['matterId']
if matterState != 'OPEN':
print(f'ignoring matter {matterId} in state {matterState}')
continue
matterIds.append(matterId)
else:
@@ -746,7 +745,6 @@ def printHolds():
matterState = matter['state']
matterId = matter['matterId']
if matterState != 'OPEN':
print(f'ignoring matter {matterId} in state {matterState}')
continue
matterIds.append(matterId)
else:

View File

@@ -13,8 +13,10 @@ export python_file=python-$BUILD_PYTHON_VERSION-amd64.exe
wget --quiet https://www.python.org/ftp/python/$BUILD_PYTHON_VERSION/$python_file
powershell ".\\${python_file} /quiet InstallAllUsers=1 TargetDir=c:\\python"
until cinst -y wixtoolset; do echo "trying again..."; done
until cp -v /c/ssl/libcrypto-1_1-x64.dll /c/python/DLLs/libcrypto-1_1.dll; do echo "trying again..."; done
until cp -v /c/ssl/libssl-1_1-x64.dll /c/python/DLLs/libssl-1_1.dll; do echo "trying again..."; done
until cp -v /c/ssl/libcrypto-1_1-x64.dll /c/python/DLLs/; do echo "trying libcrypto copy again..."; done
cp -v /c/python/DLLs/libcrypto-1_1-x64.dll /c/python/DLLs/libcrypto-1_1.dll
until cp -v /c/ssl/libssl-1_1-x64.dll /c/python/DLLs/; do echo "trying libssl copy again..."; done
cp -v /c/python/DLLs/libssl-1_1-x64.dll /c/python/DLLs/libssl-1_1.dll
export PATH=$PATH:/c/python/scripts
cd $mypath
export python=/c/python/python.exe