mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
13 lines
351 B
Bash
Executable File
13 lines
351 B
Bash
Executable File
#!/bin/bash
|
|
# Run before_script actions for SOCI build at travis-ci.org
|
|
#
|
|
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
|
|
#
|
|
source ${TRAVIS_BUILD_DIR}/bin/ci/common.sh
|
|
|
|
before_script="${TRAVIS_BUILD_DIR}/bin/ci/before_script_${SOCI_TRAVIS_BACKEND}.sh"
|
|
if [ -x ${before_script} ]; then
|
|
echo "Running ${before_script}"
|
|
${before_script}
|
|
fi
|