Skip to content
Snippets Groups Projects
Commit 2a5fd095 authored by jurgenhaas's avatar jurgenhaas
Browse files

Fix syntax

parent eb5c9bf2
No related branches found
No related tags found
1 merge request!47Merging develop into main
......@@ -26,13 +26,13 @@ ADD run/scripts/delete /usr/local/bin/.delete
RUN echo "Install dorgflow" && \
if [ "${PHP_VERSION}" == "7.4" ] || [ "${PHP_VERSION}" == "8.0" ] || [ "${PHP_VERSION}" == "8.1" ]; then \
echo "Dorgflow is not supported on this PHP version."; \
else \
cd /var/opt && \
git clone https://github.com/joachim-n/dorgflow.git && \
cd dorgflow && \
composer install --no-dev && \
ln -s /var/opt/dorgflow/dorgflow /usr/local/bin/dorgflow && \
echo "Dorgflow is not supported on this PHP version." \
else; \
cd /var/opt; \
git clone https://github.com/joachim-n/dorgflow.git; \
cd dorgflow; \
composer install --no-dev; \
ln -s /var/opt/dorgflow/dorgflow /usr/local/bin/dorgflow; \
fi && \
\
echo "Install git-flow" && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment