Skip to content
Snippets Groups Projects
Commit 701f7de9 authored by David Trattnig's avatar David Trattnig
Browse files

Install mode check.

parent fd1d5527
No related branches found
No related tags found
No related merge requests found
Pipeline #635 passed
...@@ -2,12 +2,11 @@ ...@@ -2,12 +2,11 @@
mode="dev" mode="dev"
if [ -n "$2" ]; then if [[ $* =~ ^(prod)$ ]]; then
if [[ $1 =~ ^(prod)$ ]]; then mode=$1
mode=$1
fi
fi fi
if [ $mode == "dev" ]; then if [ $mode == "dev" ]; then
echo "[Installing AURA ENGINE for Development]" echo "[Installing AURA ENGINE for Development]"
fi fi
......
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