File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,15 +50,15 @@ PARENT_DIR=${CURRENT_DIR%"${BASE_DIR}"}
5050# find location of requirements.txt
5151if [[ -f " ${CURRENT_DIR} /requirements.txt" ]]; then
5252 REQ_PATH=" ${CURRENT_DIR} /requirements.txt"
53- echo " reqs in base dir"
53+ echo " Using requirements.txt from script dir"
5454elif [[ -f " ${PARENT_DIR} /requirements.txt" ]]; then
5555 REQ_PATH=" ${PARENT_DIR} /requirements.txt"
5656 SUBDIR_MODE=" True"
57- echo " reqs in parent "
57+ echo " Using requirements.txt from ../ "
5858elif [[ -f " ${PARENT_DIR} /function/requirements.txt" ]]; then
5959 REQ_PATH=" ${PARENT_DIR} /function/requirements.txt"
6060 SUBDIR_MODE=" True"
61- echo " reqs in parent /function"
61+ echo " Using requirements.txt from .. /function"
6262else
6363 echo " Unable to find requirements.txt"
6464 exit 1
You can’t perform that action at this time.
0 commit comments