Skip to content

Commit

Permalink
fix: Removing openssl check for GH runners.
Browse files Browse the repository at this point in the history
  • Loading branch information
tazarov committed Feb 9, 2024
1 parent 8a33d3b commit 8677680
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions bin/generate_self_signed_cert.sh
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
#!/usr/bin/env sh

if ! command -v openssl &> /dev/null
then
if [ -f /etc/os-release ]; then
. /etc/os-release
if [ "$ID" == "ubuntu" ] || [ "$ID" == "debian" ]; then
sudo apt-get update && sudo apt-get install openssl -y
else
echo "openssl command not found. Please install it and try again."
exit
fi
fi

# check if the openssl.cnf file exists
if [ ! -f chromadb/test/openssl.cnf ]; then
echo "openssl.cnf file not found. Please run the script from the root of the project."
Expand Down

0 comments on commit 8677680

Please sign in to comment.