diff options
author | Klemens Nanni <contact@autoboot.org> | 2015-08-24 13:24:34 +0200 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-08-29 18:44:33 +0100 |
commit | 7c25df4580a8fcd763497214ee66c9e2e192a757 (patch) | |
tree | eafbce06a9421d37d42fd4620b9aeb5fc82d6c57 /download | |
parent | 33c9e3dea85d5274f9a19db10195f3b2e5bcccd2 (diff) | |
download | librebootfr-7c25df4580a8fcd763497214ee66c9e2e192a757.tar.gz librebootfr-7c25df4580a8fcd763497214ee66c9e2e192a757.zip |
Fix: Download all passed modules
Diffstat (limited to 'download')
-rwxr-xr-x | download | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -45,6 +45,8 @@ case ${@} in for programme in ${@}; do echo ${availableprogrammes} | grep -wq ${programme} || (printf "ERROR: Invalid programme '${programme}'. See ./download help.\n"; exit 1) done - ${download}/${@};; + for programme in ${@}; do + ${download}/${programme} + done;; esac # ------------------- DONE ---------------------- |