On Wed, 17 May 2023, Olaf Hering wrote: > Calling build twice in the same environment will fail because the > directory 'binaries' was already created before. Use mkdir -p to ignore > an existing directory and move on to the actual build. > > Signed-off-by: Olaf Hering <o...@aepfle.de>
Acked-by: Stefano Stabellini <sstabell...@kernel.org> > --- > automation/scripts/build | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/automation/scripts/build b/automation/scripts/build > index 197d085f3e..9085cba352 100755 > --- a/automation/scripts/build > +++ b/automation/scripts/build > @@ -36,7 +36,7 @@ fi > cp xen/.config xen-config > > # Directory for the artefacts to be dumped into > -mkdir binaries > +mkdir -p binaries > > if [[ "${CPPCHECK}" == "y" ]] && [[ "${HYPERVISOR_ONLY}" == "y" ]]; then > # Cppcheck analysis invokes Xen-only build. >