Skip to content

Commit 4c02574

Browse files
committed
Ensure package script and integration test script are pointing to the same buildpack file location.
1 parent c1a0fee commit 4c02574

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

scripts/integration.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,8 @@ function buildpack::package() {
161161
--stack "${stack}" \
162162
"${cached_flag}" > /dev/null
163163

164-
# This is set by the ruby-written buildpack-packager
165-
local output
166-
if [[ "${cached}" == "true" ]]; then
167-
output="${ROOTDIR}/php_buildpack-cached-${stack}-v${version}.zip"
168-
else
169-
output="${ROOTDIR}/php_buildpack-${stack}-v${version}.zip"
170-
fi
171-
printf "%s" "${output}"
164+
# this is the default output location of the package.sh script
165+
echo "${ROOTDIR}/build/buildpack.zip"
172166
}
173167

174168
main "${@:-}"

0 commit comments

Comments
 (0)