Skip to content

Commit 85cd354

Browse files
committed
adjust status messages
1 parent 14603ba commit 85cd354

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build_layer.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ PARENT_DIR=${CURRENT_DIR%"${BASE_DIR}"}
5050
# find location of requirements.txt
5151
if [[ -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"
5454
elif [[ -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 ../"
5858
elif [[ -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"
6262
else
6363
echo "Unable to find requirements.txt"
6464
exit 1

0 commit comments

Comments
 (0)