6df37932ab
This wasn’t necessary before, but it seems to be necessary now.
9 lines
194 B
Bash
Executable File
9 lines
194 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e -o pipefail
|
|
|
|
[[ -z "$NGIO_ENV_DEFS" ]] && . ./scripts/env-set.sh
|
|
[[ -n "$TRAVIS" ]] && . ./scripts/env-info-and-check.sh
|
|
|
|
(set -x; npm install -g gulp --no-optional)
|