Skip to content

Commit

Permalink
openssl install?
Browse files Browse the repository at this point in the history
  • Loading branch information
btruncali1 committed Feb 4, 2025
1 parent 45c6ff9 commit 8c264cc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/build
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
#!/usr/bin/env bash
set -e

# Ensure OpenSSL is installed
if ! command -v openssl &> /dev/null; then
echo "Installing OpenSSL..."
sudo apt-get update
sudo apt-get install -y libssl-dev
fi

# Set OpenSSL environment variables
export LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH


if ! command -v dotnet-format; then
Expand Down

0 comments on commit 8c264cc

Please sign in to comment.