From ef3d52e04c085a37fa0f1ba4c837c2b0456d6012 Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Sun, 23 Oct 2022 09:28:42 -0400 Subject: build: docker: scripts: autotools: do not fail if .m2/ exists Previously, when doing manual runs inside of the docker container, the `autotools.sh` script would fail if the `.m2/` directory already existed. This was a minor annoyance. Simply pass the `-p` flag to `mkdir`. Signed-off-by: Chris Friedt --- build/docker/scripts/autotools.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/docker/scripts/autotools.sh b/build/docker/scripts/autotools.sh index 52b17eee8..c92599f96 100755 --- a/build/docker/scripts/autotools.sh +++ b/build/docker/scripts/autotools.sh @@ -1,7 +1,7 @@ #!/bin/sh set -ev -mkdir ~/.m2 +mkdir -p ~/.m2 tee >~/.m2/settings.xml < -- cgit v1.2.1