Skip to content

Instantly share code, notes, and snippets.

Avatar
🌤️
👋

Igor Spasić igr

🌤️
👋
View GitHub Profile
View keybase.md

Keybase proof

I hereby claim:

  • I am igr on github.
  • I am igors (https://keybase.io/igors) on keybase.
  • I have a public key ASCXuaooufyMCer3i5afxIjKQhhJJwZlNsWPUx1xXBt40go

To claim this, I am signing this object:

@igr
igr / install-startssl-certs.sh
Created November 10, 2016 21:11
Installs startssl CA certs into the global Java keystore
View install-startssl-certs.sh
#!/bin/bash
# Downloads and installs the startssl CA certs into the global Java keystore
set -euf -o pipefail
# Check if JAVA_HOME is set
if [ "$JAVA_HOME" = "" ]
then
echo "ERROR: JAVA_HOME must be set."
exit 1