mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
10 lines
333 B
Bash
Executable File
10 lines
333 B
Bash
Executable File
#!/bin/bash -e
|
|
# 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"
|
|
[ -x ${before_script} ] && ${before_script} || echo "nothing to run"
|