diff options
author | Roland Clobus <rclobus@rclobus.nl> | 2021-01-01 16:51:02 +0000 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2021-01-01 16:51:02 +0000 |
commit | 037e93fe37f8b5d974e3e6219fa6ee94ad5cf504 (patch) | |
tree | e69a07c5d4d2ccc5cfc9bcec3766f445c832deeb /scripts/build/binary_win32-loader | |
parent | 3f7dd00fcb83177e679e9f1449200dee11dc1531 (diff) | |
download | vyos-live-build-037e93fe37f8b5d974e3e6219fa6ee94ad5cf504.tar.gz vyos-live-build-037e93fe37f8b5d974e3e6219fa6ee94ad5cf504.zip |
Preserve timestamps
Diffstat (limited to 'scripts/build/binary_win32-loader')
-rwxr-xr-x | scripts/build/binary_win32-loader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/binary_win32-loader b/scripts/build/binary_win32-loader index 18fccfa64..c4b42e1ad 100755 --- a/scripts/build/binary_win32-loader +++ b/scripts/build/binary_win32-loader @@ -53,9 +53,9 @@ case "${LB_ARCHITECTURE}" in if [ "${LB_BUILD_WITH_CHROOT}" = "true" ] then # Copying win32-loader - cp -r chroot/usr/share/win32/* binary + cp -a chroot/usr/share/win32/* binary else - cp -r usr/share/win32/* binary + cp -a usr/share/win32/* binary fi mv binary/win32-loader.exe binary/setup.exe |