summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xadapt-ks-template2
-rwxr-xr-xcreate-boot-floppy2
2 files changed, 2 insertions, 2 deletions
diff --git a/adapt-ks-template b/adapt-ks-template
index 5dcbee7..d5c356b 100755
--- a/adapt-ks-template
+++ b/adapt-ks-template
@@ -113,7 +113,7 @@ function parse_commadline {
shift
;;
--krnl-cmdline)
- KrnlCmdLineOpt="--krnl-cmdline $(echo ${2} | sed -e 's/;/ /g')"
+ KrnlCmdLineOpt="$(echo ${2} | sed -e 's/;/ /g')"
shift
;;
*)
diff --git a/create-boot-floppy b/create-boot-floppy
index a6f0a43..5c32862 100755
--- a/create-boot-floppy
+++ b/create-boot-floppy
@@ -104,7 +104,7 @@ function parse_commadline {
shift
;;
--inst-cmdline)
- InstCmdLineOpt="--inst-cmdline $(echo ${2} | sed -e 's/;/ /g')"
+ InstCmdLineOpt="$(echo ${2} | sed -e 's/;/ /g')"
shift
;;
*)