Skip to content

Commit 814fdc6

Browse files
arnej27959esolitos
authored andcommitted
Fix typo in select_dockerfile function
Corrected "Dockefile" to "Dockerfile" in the wanted variable assignment. This typo would prevent the function from finding the correct Dockerfile for the specified build OS.
1 parent eaf738b commit 814fdc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/build-container.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ cd "${WORKDIR}/docker-image"
4747
SOURCE_GITREF=$(git rev-parse HEAD)
4848

4949
select_dockerfile() {
50-
wanted="Dockefile.${VESPA_BUILDOS_LABEL}"
50+
wanted="Dockerfile.${VESPA_BUILDOS_LABEL}"
5151
if [ -f "${wanted}" ]; then
5252
echo "${wanted}"
5353
else

0 commit comments

Comments
 (0)