summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2022-09-07 12:02:36 +0200
committerBadlop <badlop@process-one.net>2022-09-07 13:59:20 +0200
commitc496baaf876e7732e0521dc7bba2b3bbc75fbcd6 (patch)
tree15e6e90e3621082376b9a1008b3e901961d0841f
parentContainer: No need to search for the ejabberdctl binary (diff)
Container: Don't complain if the bin/ directory already exists
-rw-r--r--.github/container/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/container/Dockerfile b/.github/container/Dockerfile
index a9f1c2e2..24d296c6 100644
--- a/.github/container/Dockerfile
+++ b/.github/container/Dockerfile
@@ -43,7 +43,7 @@ RUN cp -r _build/prod/rel/ejabberd/ /opt/ejabberd-$VERSION \
&& mv /opt/ejabberd-$VERSION/conf /opt/ejabberd/conf
RUN BINPATH=$(dirname $(find /opt -name msgs))/bin/ \
- && mkdir $BINPATH \
+ && mkdir -p $BINPATH \
&& cp tools/captcha*.sh $BINPATH
RUN export PEM=/opt/ejabberd/conf/server.pem \