Skip to content

Commit 94f95ac

Browse files
committed
build_image: Temporarily nobble condition around generate_update
Once we have passed the shim review, we will delay this task until the kernel has been signed later in the pipeline. Signed-off-by: James Le Cuirot <[email protected]>
1 parent aa70fc9 commit 94f95ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build_image

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ if [[ "${PROD_IMAGE}" -eq 1 ]]; then
177177
if [[ ${FLAGS_extract_update} -eq ${FLAGS_TRUE} ]]; then
178178
extract_update "${FLATCAR_PRODUCTION_IMAGE_NAME}" "${DISK_LAYOUT}"
179179
fi
180-
if [[ ${FLAGS_generate_update} -eq ${FLAGS_TRUE} && ${COREOS_OFFICIAL:-0} -ne 1 ]]; then
180+
# TODO: Un-nobble this later when we have passed the shim review.
181+
if [[ ${FLAGS_generate_update} -eq ${FLAGS_TRUE} ]]; then # && ${COREOS_OFFICIAL:-0} -ne 1 ]]; then
181182
generate_update "${FLATCAR_PRODUCTION_IMAGE_NAME}" "${DISK_LAYOUT}"
182183
fi
183184
if [[ "${PROD_TAR}" -eq 1 ]]; then

0 commit comments

Comments
 (0)