Skip to content

Instantly share code, notes, and snippets.

View aldaris's full-sized avatar

Peter Major aldaris

  • Identity Fusion
  • Bristol, United Kingdom
  • X @majorpetya
View GitHub Profile
@aldaris
aldaris / buildAM13.sh
Created April 4, 2017 08:05
Shell script to build OpenAM 13.0.0 from openam-public repository
#!/bin/bash
#Run buildDJ3.sh script first in the same folder from: https://gist.github.com/aldaris/fe234d76f3940c42ae9bb5aa69b8e98e
function build() {
mvn clean install
if [ $? -ne 0 ] ; then
exit 1;
fi
}