install-libssl.sh 229 B

123456789
  1. #!/usr/bin/env bash
  2. set -ex
  3. [[ $(uname) = Linux ]] || exit 1
  4. [[ $USER = root ]] || exit 1
  5. # Install libssl-dev to be compatible with binaries built on an Ubuntu machine...
  6. apt-get update
  7. apt-get --assume-yes install libssl-dev