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 -e "ERROR: no environment argument [production|development] provided"
13
+
exit 1
14
+
fi
15
+
16
+
if [ $ENVIRONMENT!="production" ] && [ $ENVIRONMENT!="development" ];then
17
+
echo -e "ERROR: environment argument must be either [production|development] most likely this will be development for local machines and production otherwise"
echo -e "ERROR: no environment argument [production|development] provided"
13
+
exit 1
14
+
fi
15
+
16
+
if [ $ENVIRONMENT!="production" ] && [ $ENVIRONMENT!="development" ];then
17
+
echo -e "ERROR: environment argument must be either [production|development] most likely this will be development for local machines and production otherwise"
0 commit comments