|
|
@ -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 |
|
|
|