diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2012-05-29 17:01:35 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-05-29 17:01:35 +0200 |
commit | 7b6d5b160ed56fec13082617afe1686217333557 (patch) | |
tree | 85b2d189b42c3c9a75704df45a16207206b898e9 | |
parent | 184a289a357892be363bd05e40a62558108149d6 (diff) | |
download | kanotix-7b6d5b160ed56fec13082617afe1686217333557.zip kanotix-7b6d5b160ed56fec13082617afe1686217333557.tar.gz |
combine_iso.bash: removed extra spaces
-rwxr-xr-x | combine_iso.bash | 12 |
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") |