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 @@
mode="dev"
if [ -n "$2" ]; then
if [[ $1 =~ ^(prod)$ ]]; then
mode=$1
fi
if [[ $* =~ ^(prod)$ ]]; then
mode=$1
fi
if [ $mode == "dev" ]; then
echo "[Installing AURA ENGINE for Development]"
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