I am writing a bash script to automate the installation. I am following steps from a guide. Below are the installation steps I need to write in script.
./configure
make
make all
I wrote my script like below.
function install_plugin {
cd $INSTALLATION_FOLDER/some-plugins
exec ./configure
make
make install
}
The script works till ./configure and stops.