mirror of
https://github.com/SOCI/soci.git
synced 2026-02-15 02:38:42 -06:00
13 lines
367 B
Bash
Executable File
13 lines
367 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}/scripts/travis/common.sh
|
|
|
|
before_script="${TRAVIS_BUILD_DIR}/scripts/travis/before_script_${SOCI_TRAVIS_BACKEND}.sh"
|
|
if [ -x ${before_script} ]; then
|
|
echo "Running ${before_script}"
|
|
${before_script}
|
|
fi
|