I need to run the following script when making a new docker image.
sh -c "$(curl -fsSL https://starship.rs/install.sh)"
The above script asks me to proceed and I have to answer with y/N. How do I pipe 'y' into the above command, or is there a way to run without the confirmation?
Thanks.
$(yes | curl -fsSL https://starship.rs/install.sh)
.