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
* add --auto-run option to get-core.sh
* print to stderr
Co-authored-by: Giuseppe <[email protected]>
---------
Co-authored-by: Giuseppe <[email protected]>
echo"[⚠️] Note: a local 'firebolt-core-data directory' will be created."
56
-
read -p "[🔥] Everything is set up and you are ready to go! Do you want to run the Firebolt Core image? [y/N]: " answer
66
+
67
+
if [ "$AUTO_RUN"=true ];then
68
+
answer="y"
69
+
else
70
+
read -p "[🔥] Everything is set up and you are ready to go! Do you want to run the Firebolt Core image? (use --auto-run to skip this prompt) [y/N]: " answer
71
+
fi
72
+
57
73
case"$answer"in
58
74
[yY])
59
75
echo"[🔥] Running a Firebolt Core Docker container"
0 commit comments