This repository was archived by the owner on Dec 4, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 22
33set -e -o pipefail
44
5- ./scripts/env-info-and-check.sh
5+ [[ -z " $NGIO_ENV_DEFS " ]] && . ./scripts/env-set.sh
6+ [[ -n " $TRAVIS " ]] && . ./scripts/env-info-and-check.sh
67
7- if [[ 0 ]]; then
8- # Doesn't seem to be necessary. Disabling.
9- travis_fold start install.globals
8+ if [ -z " $TRAVIS " ]; then
109 set -x
1110 npm install -g gulp --no-optional
1211 set +x
13- travis_fold end install.globals
1412fi
Original file line number Diff line number Diff line change 22
33set -e -o pipefail
44
5+ [[ -z " $NGIO_ENV_DEFS " ]] && . ./scripts/env-set.sh
6+
57travis_fold start env_info
68echo ENVIRONMENT INFO
79travis_fold start env_info.path
1113travis_fold end env_info.path
1214travis_fold start env_info.home
1315echo Home: $HOME
14- ls ~ -la
16+ ls -la ~
1517echo
1618travis_fold end env_info.home
1719travis_fold start env_info.pwd
Original file line number Diff line number Diff line change 33if [[ -z " $NGIO_ENV_DEFS " ]]; then
44 export ANSI_YELLOW=" \033[33;1m"
55 export ANSI_RESET=" \033[0m"
6- echo -e " ${ANSI_YELLOW} Setting environment variables from scripts/env.sh${ANSI_RESET} "
6+ echo -e " ${ANSI_YELLOW} Setting environment variables from scripts/env-set .sh${ANSI_RESET} "
77
88 export NGIO_ENV_DEFS=1
99
@@ -12,7 +12,7 @@ if [[ -z "$NGIO_ENV_DEFS" ]]; then
1212
1313 if [ ! $( type -t travis_fold) ]; then
1414 # In case this is being run locally. Turn travis_fold into a noop.
15- travis_fold () { return ; }
15+ travis_fold () { true ; }
1616 # Alternative definition:
1717 # travis_fold () { echo -en "travis_fold:${1}:${2}"; }
1818 fi
You can’t perform that action at this time.
0 commit comments