full paths

This commit is contained in:
Jay Lee
2019-05-17 22:17:31 -04:00
parent bfc0b57f62
commit 86154adc92
2 changed files with 5 additions and 5 deletions

View File

@@ -2,14 +2,14 @@ echo "Installing Net-Framework-Core..."
until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done
cinst -y --forcex86 python3
cd ~/pybuild
exefile=Win32OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe
export exefile=Win32OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe
if [ ! -e $exefile ]; then
echo "Downloading $exefile..."
wget --quiet https://slproweb.com/download/$exefile
fi
if [ ! -e ssl/libssl-1_1-x64.dll ]; then
echo "Extracting $exefile..."
powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=ssl"
echo "Installing $exefile..."
powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\Users\\travis\\pybuild\\ssl"
fi
echo "OpenSSL dlls..."
ls -alRF ssl

View File

@@ -2,14 +2,14 @@ echo "Installing Net-Framework-Core..."
until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done
cinst -y python3
cd ~/pybuild
exefile=Win64OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe
export exefile=Win64OpenSSL_Light-${BUILD_OPENSSL_VERSION//./_}.exe
if [ ! -e $exefile ]; then
echo "Downloading $exefile..."
wget --quiet https://slproweb.com/download/$exefile
fi
if [ ! -e ssl/libssl-1_1-x64.dll ]; then
echo "Installing $exefile..."
powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=ssl"
powershell ".\\${exefile} /silent /sp- /suppressmsgboxes /DIR=C:\\Users\\travis\\pybuild\\ssl"
fi
echo "OpenSSL dlls..."
ls -alRF ssl