We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 803586b commit 0c808bfCopy full SHA for 0c808bf
scripts/build_layers.sh
@@ -180,8 +180,9 @@ do
180
echo "Building layer for Python ${python_version} arch=${architecture}"
181
set +e
182
find_and_spec_wheel ${python_version} ${architecture} "ddtrace_serverless" "serverless"
183
+ FAILURE=$?
184
set -e
- if [ $? != 0 ]; then
185
+ if [ $FAILURE != 0 ]; then
186
echo "Attempting layer build again with package ddtrace"
187
find_and_spec_wheel ${python_version} ${architecture} "ddtrace" "manylinux2014"
188
fi
0 commit comments