Message ID | 20230517055722.4057-1-olaf@aepfle.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v1] automation: allow to rerun build script | expand |
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 <olaf@aepfle.de> Acked-by: Stefano Stabellini <sstabellini@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. >
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.
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 <olaf@aepfle.de> --- automation/scripts/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)