Skip to content
Snippets Groups Projects
Commit 1c877482 authored by Éloïs's avatar Éloïs
Browse files

fix(docker):avoid error in some cases by creating fake duniter-cucumber

parent f8d6d04b
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,14 @@ RUN test -x build/duniter || \ ...@@ -27,6 +27,14 @@ RUN test -x build/duniter || \
mv target/release/duniter build/ \ mv target/release/duniter build/ \
) )
# Create fake duniter-cucumber if is not exist
# The goal is to avoid error later, this binary is optional
RUN test -x build/duniter-cucumber || \
( \
mkdir -p build && \
touch build/duniter-cucumber \
)
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# Final Stage # Final Stage
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment