From 6c5e2e49f7b527aff098caa4adf06debf6b83ec3 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Tue, 21 Apr 2020 10:01:07 -0400 Subject: [PATCH] fcosBuild: do a fetch first Doing `cosa build` directly without fetching normally works, though that broke recently. Let's just do an explicit `fetch` for now. See also https://github.com/coreos/coreos-assembler/pull/1379. --- vars/fcosBuild.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/vars/fcosBuild.groovy b/vars/fcosBuild.groovy index 00afb2d..6a86862 100644 --- a/vars/fcosBuild.groovy +++ b/vars/fcosBuild.groovy @@ -28,6 +28,7 @@ def call(params = [:]) { } } + shwrap("cd /srv/fcos && cosa fetch --strict") shwrap("cd /srv/fcos && cosa build --strict") }