diff options
Diffstat (limited to 'PCBSD/pc-sysinstall')
-rw-r--r-- | PCBSD/pc-sysinstall/backend/functions-extractimage.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/PCBSD/pc-sysinstall/backend/functions-extractimage.sh b/PCBSD/pc-sysinstall/backend/functions-extractimage.sh index 8f630e6..adbfebf 100644 --- a/PCBSD/pc-sysinstall/backend/functions-extractimage.sh +++ b/PCBSD/pc-sysinstall/backend/functions-extractimage.sh @@ -273,6 +273,8 @@ init_extraction() then INSFILE="${VAL}" ; export INSFILE fi + oIFS=$IFS + IFS="," for FILE in $INSFILE; do echo_log "pc-sysinstall: Running cpdup -vvv -I -o /${FILE} /mnt/${FILE}" /usr/local/bin/cpdup -vvv -I -o /${FILE} /mnt/ >&1 2>&1 @@ -282,6 +284,9 @@ init_extraction() exit_err "ERROR: Error occurred during cpdup" fi done + oIFS=$IFS + IFS=" +" return ;; dvd|usb) # Lets start by mounting the disk |