Skip to content

Commit

Permalink
Check ORACLE_HOME from script.sh builder
Browse files Browse the repository at this point in the history
  • Loading branch information
mloskot committed Feb 28, 2013
1 parent 8a3c7f1 commit 1926915
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/ci/script.sh
Expand Up @@ -4,7 +4,12 @@
#
set -e
if [[ "$TRAVIS" != "true" ]] ; then
echo_err "Running this script makes no sense outside of travis-ci.org"
echo "Running this script makes no sense outside of travis-ci.org"
exit 1
fi

if [[ -z $ORACLE_HOME ]] ; then
echo "ORACLE_HOME is missing"
exit 1
fi
# Build SOCI using CMake (primary build configuration)
Expand Down

0 comments on commit 1926915

Please sign in to comment.