diff options
author | Daniel Baumann <daniel@debian.org> | 2011-09-07 17:37:37 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-09-07 17:37:37 +0200 |
commit | c2633d240584d385ab8f6e9fd053660c3be97d69 (patch) | |
tree | fc6ce90a7b1672cf626f28e3e6119491d96f6890 | |
parent | 9119f24831c5d7e1b6d971607bd2774ebfb59454 (diff) | |
download | vyos-live-build-c2633d240584d385ab8f6e9fd053660c3be97d69.tar.gz vyos-live-build-c2633d240584d385ab8f6e9fd053660c3be97d69.zip |
Correcting syntax error in local package handling.
-rwxr-xr-x | scripts/build/lb_chroot_archives | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build/lb_chroot_archives b/scripts/build/lb_chroot_archives index 441d63ff1..327ee692c 100755 --- a/scripts/build/lb_chroot_archives +++ b/scripts/build/lb_chroot_archives @@ -297,6 +297,7 @@ EOF then cp -L "${FILE}" chroot/root/packages elif [ -e "${FILE}" ] + then cp ${CP_OPTIONS} "${FILE}" chroot/root/packages fi done @@ -310,6 +311,7 @@ EOF then cp -L "${FILE}" chroot/root/packages elif [ -e "${FILE}" ] + then cp ${CP_OPTIONS} "${FILE}" chroot/root/packages fi done |