diff options
author | Daniel Baumann <daniel@debian.org> | 2012-05-25 18:36:31 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-05-25 19:13:20 +0200 |
commit | 626b9923f77a5c6bcb67e93ebd2a9c3bf5cda0bd (patch) | |
tree | 5eaebbd7f0b38143fe471e7bf6e452a5b1cfd7f4 /scripts | |
parent | 3a864f6dddc1d8659e96e4f95f33a68181039bd8 (diff) | |
download | vyos-live-build-626b9923f77a5c6bcb67e93ebd2a9c3bf5cda0bd.tar.gz vyos-live-build-626b9923f77a5c6bcb67e93ebd2a9c3bf5cda0bd.zip |
Correcting renaming of syslinux files in progress mode to actually work.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/lb_binary_syslinux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/lb_binary_syslinux b/scripts/build/lb_binary_syslinux index 866e790c9..687fb73f2 100755 --- a/scripts/build/lb_binary_syslinux +++ b/scripts/build/lb_binary_syslinux @@ -246,7 +246,7 @@ case "${LB_MODE}" in do if [ -e "${_FILE}" ] then - mv "${_FILE}" $(echo ${_FILE} | sed -e 's|.*linux|boot|') + mv "${_FILE}" "${_TARGET}/$(echo ${_FILE} | sed -e 's|.*linux|boot|')" fi done ;; |