From d1b7774f1fefb32deeffd835c8715d82e8818301 Mon Sep 17 00:00:00 2001 From: t3chn0m4g3 Date: Fri, 26 Feb 2016 20:42:47 +0000 Subject: [PATCH] fix for systems without syslinux-utils --- makeiso.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/makeiso.sh b/makeiso.sh index 1c2d8db7..335f0fcc 100755 --- a/makeiso.sh +++ b/makeiso.sh @@ -4,7 +4,7 @@ # T-Pot # # .ISO maker # # # -# v16.03.3 by mo, DTAG, 2016-02-19 # +# v16.03.3 by mo, DTAG, 2016-02-26 # ######################################################## # Let's define some global vars @@ -74,7 +74,10 @@ done if [ "$myINST" != "" ] then apt-get update -y - apt-get install $myINST -y + for myDEPS in $myINST; + do + apt-get install $myDEPS -y + done fi # Let's ask if the user wants to run the script ...