Optionally set git root CA in wine build
- I want to use a https cache for build, that requires to add a new root CA for pip, and I can't find a way to do that cleanly without modifying the winebuild.sh script
This commit is contained in:
parent
ac2df26e96
commit
32bb2a6e44
|
@ -67,6 +67,10 @@ function install_python(){
|
||||||
echo "Installing vc_redist (2008) for 32 bit "
|
echo "Installing vc_redist (2008) for 32 bit "
|
||||||
wine vcredist_x86.exe /Q
|
wine vcredist_x86.exe /Q
|
||||||
fi
|
fi
|
||||||
|
# add cert
|
||||||
|
if [ -f /usr/local/share/ca-certificates/bitmessage-proxy.crt ]; then
|
||||||
|
wine python -m pip config set global.cert 'z:\usr\local\share\ca-certificates\bitmessage-proxy.crt'
|
||||||
|
fi
|
||||||
echo "Upgrading pip"
|
echo "Upgrading pip"
|
||||||
wine python -m pip install --upgrade pip
|
wine python -m pip install --upgrade pip
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user