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}"}
50
50
# find location of requirements.txt
51
51
if [[ -f " ${CURRENT_DIR} /requirements.txt" ]]; then
52
52
REQ_PATH=" ${CURRENT_DIR} /requirements.txt"
53
- echo " reqs in base dir"
53
+ echo " Using requirements.txt from script dir"
54
54
elif [[ -f " ${PARENT_DIR} /requirements.txt" ]]; then
55
55
REQ_PATH=" ${PARENT_DIR} /requirements.txt"
56
56
SUBDIR_MODE=" True"
57
- echo " reqs in parent "
57
+ echo " Using requirements.txt from ../ "
58
58
elif [[ -f " ${PARENT_DIR} /function/requirements.txt" ]]; then
59
59
REQ_PATH=" ${PARENT_DIR} /function/requirements.txt"
60
60
SUBDIR_MODE=" True"
61
- echo " reqs in parent /function"
61
+ echo " Using requirements.txt from .. /function"
62
62
else
63
63
echo " Unable to find requirements.txt"
64
64
exit 1
You can’t perform that action at this time.
0 commit comments