You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"Errors found in prod installation. See output above."
52
+
exit$prod_result
53
+
else
54
+
exit 0
55
+
fi
56
+
57
+
elif [[ $1=='dev'||$1=='development' ]];then
58
+
dev ${@:2}
59
+
exit$dev_result
60
+
elif [[ $1=='prod'||$1=='production' ]];then
61
+
prod ${@:2}
62
+
exit$prod_result
63
+
else
64
+
echo"Bad argument given, either specify \`dev\` or \`prod\` requirements by giving either word as your first argument to this script, or run both by giving no arguments."
0 commit comments