diff options
author | Badlop <badlop@process-one.net> | 2022-09-07 12:02:36 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2022-09-07 13:59:20 +0200 |
commit | c496baaf876e7732e0521dc7bba2b3bbc75fbcd6 (patch) | |
tree | 15e6e90e3621082376b9a1008b3e901961d0841f | |
parent | Container: No need to search for the ejabberdctl binary (diff) |
Container: Don't complain if the bin/ directory already exists
-rw-r--r-- | .github/container/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/container/Dockerfile b/.github/container/Dockerfile index a9f1c2e2a..24d296c69 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 \ |