diff --git a/entrypoint.sh b/entrypoint.sh index 66bc95a..a1b0821 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,7 +14,7 @@ publish_dependencies_as_layer(){ publish_function_code(){ echo "Deploying the code itself..." - zip -r code.zip . -i src/lambdas/ -x \*.git\* + zip -r code.zip . -i src/lambdas/* -x \*.git\* aws lambda update-function-code --function-name "${INPUT_LAMBDA_FUNCTION_NAME}" --zip-file fileb://code.zip }