We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a9019 commit 6bde41aCopy full SHA for 6bde41a
lambda_loader.sh
@@ -15,7 +15,7 @@ export ENABLED_FUNCTION="${ENABLED_FUNCTION}"
15
16
if [ ! -d "${DESTINATION}" ]; then
17
curl -s "${FUNCTION_BEAT_URL}" > "${DESTINATION}".tar.gz
18
- tar xzvf "${DESTINATION}".tar.gz
+ tar xzvf "${DESTINATION}".tar.gz > /dev/null
19
rm -rf "${DESTINATION}".tar.gz
20
fi
21
@@ -24,6 +24,7 @@ cp -f "${CONFIG_FILE}" "${DESTINATION}"/functionbeat.yml
24
cd "${DESTINATION}"
25
./functionbeat -v -e package --output ./../"${DESTINATION}-release".zip
26
27
+cd ..
28
rm -rf "${DESTINATION}"
29
30
jq -M -c -n --arg destination "${DESTINATION}-release.zip" '{"filename": $destination}'
0 commit comments