Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2014-08-12 20:48:32 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-08-12 20:48:32 +0400
commit39c3c78a3141c093fc634fd15be18cee56c8f5c8 (patch)
treed1315f3787f84d0e56d728da721ee0f4d971b34b /tests
parentd183cffd956865c0d8c81e5d3794da90915bb3d0 (diff)
Refs #5962, use absolute path when running configure_git.sh in autoupdate .travis.yml script. [ci skip]
Diffstat (limited to 'tests')
-rwxr-xr-xtests/travis/autoupdate_travis_yml.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/travis/autoupdate_travis_yml.sh b/tests/travis/autoupdate_travis_yml.sh
index 98c8c18d81..ae61b622f6 100755
--- a/tests/travis/autoupdate_travis_yml.sh
+++ b/tests/travis/autoupdate_travis_yml.sh
@@ -39,8 +39,7 @@ if [ "$DIFF_RESULT" -eq "1" ]; then
else
# only run auto-update for first travis job and if not a pull request
if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [[ "$TRAVIS_JOB_NUMBER" == *.1 ]]; then
- SCRIPT_DIR=$( dirname "$0" )
- $SCRIPT_DIR/configure_git.sh # re-configure in case git hasn't been configured yet
+ $PIWIK_ROOT_DIR/tests/travis/configure_git.sh # re-configure in case git hasn't been configured yet
git add .travis.yml
git commit -m ".travis.yml file is out of date, auto-updating .travis.yml file."