1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #!/bin/bash
| set -eo pipefail
| __dirname=$(cd $(dirname "$0"); pwd -P)
| cd "${__dirname}"
|
|
| # Only execute if TEST_BUILD is set to true
| if [[ ! -z ${TEST_BUILD+x} ]]; then
| cd external/NodeODM
| npm install --quiet
| echo "NodeODM is setup"
| else
| echo "TEST_BUILD is not set"
| fi
|
|