summaryrefslogtreecommitdiff
path: root/combine_iso.bash
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2012-05-29 17:01:35 +0200
committerAndreas Loibl <andreas@andreas-loibl.de>2012-05-29 17:01:35 +0200
commit7b6d5b160ed56fec13082617afe1686217333557 (patch)
tree85b2d189b42c3c9a75704df45a16207206b898e9 /combine_iso.bash
parent184a289a357892be363bd05e40a62558108149d6 (diff)
downloadkanotix-7b6d5b160ed56fec13082617afe1686217333557.zip
kanotix-7b6d5b160ed56fec13082617afe1686217333557.tar.gz
combine_iso.bash: removed extra spaces
Diffstat (limited to 'combine_iso.bash')
-rwxr-xr-xcombine_iso.bash12
1 files changed, 6 insertions, 6 deletions
diff --git a/combine_iso.bash b/combine_iso.bash
index 4f97991..2f62655 100755
--- a/combine_iso.bash
+++ b/combine_iso.bash
@@ -29,12 +29,12 @@ do
while IFS=: read var val
do
case "$var" in
- "System id") opt_sysid=$val;;
- "Volume id") opt_volid=$val;;
- "Volume set id") opt_setid=$val;;
- "Publisher id") opt_pubid=$val;;
- "Data preparer id") opt_preid=$val;;
- "Application id") opt_appid=$val;;
+ "System id") opt_sysid=$(echo $val);;
+ "Volume id") opt_volid=$(echo $val);;
+ "Volume set id") opt_setid=$(echo $val);;
+ "Publisher id") opt_pubid=$(echo $val);;
+ "Data preparer id") opt_preid=$(echo $val);;
+ "Application id") opt_appid=$(echo $val);;
" Key 55 AA") is_bootable=1;;
esac
done < <(isoinfo -d -i "$1")