Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion release/kokoro/release_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ set -e

if ! command -v pip3 &> /dev/null || ! command -v curl &> /dev/null || ! command -v docker &> /dev/null || ! command -v git &> /dev/null; then
echo "Installing basic dependencies..."
apt-get update && apt-get install -y python3-pip curl git
apt-get update && apt-get install -y python3-pip curl git ca-certificates
git config --global http.sslCAinfo /etc/ssl/certs/ca-certificates.crt

if ! command -v docker &> /dev/null; then
echo "Installing docker CLI..."
Expand Down
Loading