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

Install mode check.

parent 90586c17
No related branches found
No related tags found
No related merge requests found
...@@ -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