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
curl xyz | bash executes commands as they arrive. If there's a network error Bash might execute a half-retrieved script (which obviously isn't good :)). Docker's install script gets around this with:
# wrapped up in a function so that we have some protection against only getting
# half the file during "curl | sh"
do_install
We probably should add something similar :)
The text was updated successfully, but these errors were encountered:
curl xyz | bash
executes commands as they arrive. If there's a network error Bash might execute a half-retrieved script (which obviously isn't good :)). Docker's install script gets around this with:We probably should add something similar :)
The text was updated successfully, but these errors were encountered: