Chase Qi | 09edc7f | 2016-08-18 13:18:50 +0800 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | export REPO_PATH="$(pwd)" | ||||
4 | echo "REPO_PATH: ${REPO_PATH}" | ||||
5 | |||||
6 | if ! [ -d "${REPO_PATH}/automated/bin" ]; then | ||||
Chase Qi | 3d1bc84 | 2016-08-26 14:47:16 +0800 | [diff] [blame^] | 7 | echo "ERROR: Please execute the below command from 'test-definitions' DIR" |
Chase Qi | 09edc7f | 2016-08-18 13:18:50 +0800 | [diff] [blame] | 8 | echo " . ./automated/bin/setenv.sh" |
9 | exit 1 | ||||
10 | fi | ||||
11 | |||||
12 | export PATH="${REPO_PATH}/automated/bin":"${PATH}" | ||||
13 | echo "BIN_PATH: ${PATH}" |