Does anyone know why kicad-install.sh does this?

for p in ${prerequisite_list}
do
   sudo apt-get install $p || exit 1
done

Rather than something along the lines of this:

echo "${prerequisite_list}" | xargs -d"\n" sudo apt-get install


The long prompts for permission to install each package have, erm, aggravated some users, and adding -y isn't quite the right choice IMHO as it removes the user's ability to veto the package list.

Any chance of changing it?

Chris


_______________________________________________
Mailing list: https://launchpad.net/~kicad-developers
Post to     : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp

Reply via email to