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
When using a minimal Linux installation and running install.sh, you're being asked whether you made changes to the .env file or not. When selecting no and nano isn't installed, nothing will happen.
read -p "Are you sure, you made changes to .env file (y/n)? " answer
case${answer:0:1}in
y|Y|yes|YES|Yes )
echo"Continiuing Installation!"
;;
* )
nano .env
;;
esac
Expected Behavior
Install nano in case it's not installed.
Steps To Reproduce
Minimal installation Linux
Run install.sh
When being asked about whether you modified the .env file, answer n
Notice how the file can't be opened because nano isn't installed on a clean installation