Browse Source

after failure script is now less bad

pull/492/head
qadan 11 years ago
parent
commit
0560a33f49
  1. 5
      tests/scripts/travis_after_failure.sh

5
tests/scripts/travis_after_failure.sh

@ -1,8 +1,9 @@
#!/bin/bash #!/bin/bash
# Get the end portion of the TRAVIS_REPO_SLUG for the branch name. # Get the end portion of the TRAVIS_REPO_SLUG for the branch name.
DELIMITED_SLUG = $(echo $TRAVIS_REPO_SLUG | tr "/" "\n") export TRAVIS_REPO_SLUG="Islandora/islandora_stuff"
CURRENT_REPO = "${DELIMITED_SLUG[1]}" IFS=/ read -a DELIMITED_SLUG <<< "$TRAVIS_REPO_SLUG"
export CURRENT_REPO=${DELIMITED_SLUG[1]}
# Git business # Git business
export VERBOSE_DIR = $HOME/sites/default/files/simpletest/verbose export VERBOSE_DIR = $HOME/sites/default/files/simpletest/verbose

Loading…
Cancel
Save